123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace App\Models\Fpdx;
- use App\Models\Model;
- /**
- * App\Models\Fpdx\NoticeModel
- *
- * @property int $id 主键
- * @property \Illuminate\Support\Carbon $created_at 创建时间
- * @property \Illuminate\Support\Carbon $updated_at 更新时间
- * @property int|null $deleted_at 删除时间
- * @property int $room_id 房间id
- * @property string $title 标题
- * @property string $content 内容
- * @property int $reads 阅读数
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel query()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereContent($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereDeletedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereReads($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereRoomId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereTitle($value)
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Fpdx\NoticeModel whereUpdatedAt($value)
- * @mixin \Eloquent
- */
- class NoticeModel extends Model
- {
- protected $table = "kdgx_fpdx_room_notices";
- protected $dateFormat = 'U';
- protected $fillable = ['id', 'title', 'content', 'room_id'];
- }
|