| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Modes;
- use Illuminate\Database\Eloquent\Model;
- /**
- * App\Modes\SystemNotice
- *
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice query()
- * @mixin \Eloquent
- * @property int $id
- * @property int $province 省份(area.id)
- * @property int $city 市(area.id)
- * @property int $district 区(area.id)
- * @property string|null $content 消息内容
- * @property int $created_uid 添加用户
- * @property \Illuminate\Support\Carbon $created_at
- * @property \Illuminate\Support\Carbon $updated_at
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereCity($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereContent($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereCreatedUid($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereDistrict($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereProvince($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereUpdatedAt($value)
- * @property string $title 标题
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Modes\SystemNotice whereTitle($value)
- */
- class SystemNotice extends Model
- {
- protected $table = 'system_notice';
- }
|