FaceMatchModel.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models\User;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\User\FaceMatchModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon|null $created_at
  9. * @property \Illuminate\Support\Carbon|null $updated_at
  10. * @property int $uid 用户
  11. * @property string $check_img 审核图片
  12. * @property string $match_img 对比图片
  13. * @property int $score 匹配分
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel newModelQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel newQuery()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel query()
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereCheckImg($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereCreatedAt($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereId($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereMatchImg($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereScore($value)
  22. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereUid($value)
  23. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User\FaceMatchModel whereUpdatedAt($value)
  24. * @mixin \Eloquent
  25. */
  26. class FaceMatchModel extends Model
  27. {
  28. protected $table = "kdgx_facematch";
  29. protected $fillable = ['id', 'created_at', 'updated_at', 'uid', 'check_img', 'match_img', 'score'];
  30. }