FeedcheckLogModel.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models\User;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\User\FeedcheckLogModel
  6. *
  7. * @property int $id 主键
  8. * @property int $uid 用户
  9. * @property int $partner_id 卡片
  10. * @property int|null $is_pass 是否通过0不通过|1通过
  11. * @property int $created_at 创建时间
  12. * @property int|null $expire_at 过期时间
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel newModelQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel newQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel query()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel whereCreatedAt($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel whereExpireAt($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel whereId($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel whereIsPass($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel wherePartnerId($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FeedcheckLogModel whereUid($value)
  22. * @mixin \Eloquent
  23. */
  24. class FeedcheckLogModel extends Model
  25. {
  26. protected $table = "kdgx_fpdx_admin_feedcheck_log";
  27. public $fillable = ['id', 'uid', 'partner_id', 'is_pass', 'created_at', 'expire_at'];
  28. public $timestamps = false;
  29. }