UserPhotoLogModel.php 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Models\Log;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Log\UserPhotoLogModel
  6. *
  7. * @property int $id 主键
  8. * @property int $uid 用户
  9. * @property string $src 资源地址
  10. * @property \Illuminate\Support\Carbon|null $created_at 创建时间
  11. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel newModelQuery()
  12. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel newQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel query()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel whereCreatedAt($value)
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel whereId($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel whereSrc($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\UserPhotoLogModel whereUid($value)
  18. * @mixin \Eloquent
  19. */
  20. class UserPhotoLogModel extends Model
  21. {
  22. protected $table = "kdgx_fpdx_user_photo_logs";
  23. protected $dateFormat = 'U';
  24. public $fillable = ['id', 'uid', 'src'];
  25. public const UPDATED_AT = null;
  26. }