EachLikeModel.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace App\Models\Deed;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Deed\EachLikeModel
  6. *
  7. * @property int $id
  8. * @property int $created_at 创建时间
  9. * @property int $updated_at 修改时间
  10. * @property int $uid 后点赞的用户
  11. * @property int $tuid 先点赞的用户
  12. * @property int $read_at 阅读时间
  13. * @property int $state 相互喜欢的状态0:解开,1:相互喜欢
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereCreatedAt($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereId($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereReadAt($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereState($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereTuid($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereUid($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Deed\EachLikeModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class EachLikeModel extends Model
  27. {
  28. protected $table = "kdgx_fpdx_eachlike";
  29. protected $dateFormat = 'U';
  30. public $timestamps = false;
  31. protected $fillable = ['id', 'created_at', 'updated_at', 'uid', 'tuid', 'read_at', 'state'];
  32. }