NoticeManageModel.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Models\Common;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Common\NoticeManageModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property int $uid 用户
  11. * @property string $key 通知类型
  12. * @property string $group 分组
  13. * @property int $isopen 是否打开0关闭|1打开
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereCreatedAt($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereGroup($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereId($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereIsopen($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereKey($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereUid($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Common\NoticeManageModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class NoticeManageModel extends Model
  27. {
  28. protected $table = 'kdgx_miniprogram_notice_manage';
  29. protected $dateFormat = 'U';
  30. protected $fillable = ['key', 'uid', 'group', 'isopen'];
  31. }