UserInvoiceDao.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\dao\user;
  13. use app\dao\BaseDao;
  14. use app\model\user\UserInvoice;
  15. /**
  16. * Class UserInvoiceDao
  17. * @package app\dao\user
  18. */
  19. class UserInvoiceDao extends BaseDao
  20. {
  21. protected function setModel(): string
  22. {
  23. return UserInvoice::class;
  24. }
  25. /**
  26. * @param array $where
  27. * @param string $field
  28. * @param int $page
  29. * @param int $limit
  30. * @return array
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. */
  35. public function getList(array $where, string $field = '*', int $page, int $limit)
  36. {
  37. return $this->search($where)->field($field)->page($page, $limit)->order('is_default desc,id desc')->select()->toArray();
  38. }
  39. /**
  40. * 设置默认(个人普通|企业普通|企业专用)
  41. * @param int $uid
  42. * @param int $id
  43. * @param $header_type
  44. * @param $type
  45. * @return bool
  46. */
  47. public function setDefault(int $uid, int $id, $header_type, $type)
  48. {
  49. if (false === $this->getModel()->where('uid', $uid)->where('header_type', $header_type)->where('type', $type)->update(['is_default' => 0])) {
  50. return false;
  51. }
  52. if (false === $this->getModel()->where('id', $id)->update(['is_default' => 1])) {
  53. return false;
  54. }
  55. return true;
  56. }
  57. }