SystemSignReward.php 699 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace app\model\system;
  3. use crmeb\basic\BaseModel;
  4. use crmeb\traits\ModelTrait;
  5. /**
  6. * @author: 吴汐
  7. * @email: 442384644@qq.com
  8. * @date: 2023/7/28
  9. */
  10. class SystemSignReward extends BaseModel
  11. {
  12. use ModelTrait;
  13. /**
  14. * 数据表主键
  15. * @var string
  16. */
  17. protected $pk = 'id';
  18. /**
  19. * 模型名称
  20. * @var string
  21. */
  22. protected $name = 'system_sign_reward';
  23. /**
  24. * 类型搜索器
  25. * @param $query
  26. * @param $value
  27. * @author: 吴汐
  28. * @email: 442384644@qq.com
  29. * @date: 2023/7/28
  30. */
  31. public function searchTypeAttr($query, $value)
  32. {
  33. if ($value !== '') $query->where('type', $value);
  34. }
  35. }