UserInvoiceDao.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 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. use think\exception\ValidateException;
  16. /**
  17. * Class UserInvoiceDao
  18. * @package app\dao\user
  19. */
  20. class UserInvoiceDao extends BaseDao
  21. {
  22. protected function setModel(): string
  23. {
  24. return UserInvoice::class;
  25. }
  26. /**
  27. * @param array $where
  28. * @param string $field
  29. * @param int $page
  30. * @param int $limit
  31. * @return array
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\DbException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. */
  36. public function getList(array $where, string $field = '*', int $page = 0, int $limit = 0)
  37. {
  38. return $this->search($where)->field($field)->page($page, $limit)->order('is_default desc,id desc')->select()->toArray();
  39. }
  40. /**
  41. * 设置默认(个人普通|企业普通|企业专用)
  42. * @param int $uid
  43. * @param int $id
  44. * @param $header_type
  45. * @param $type
  46. * @return bool
  47. */
  48. public function setDefault(int $uid, int $id, $header_type, $type)
  49. {
  50. if (false === $this->getModel()->where('uid', $uid)->where('header_type', $header_type)->where('type', $type)->update(['is_default' => 0])) {
  51. return false;
  52. }
  53. if (false === $this->getModel()->where('id', $id)->update(['is_default' => 1])) {
  54. return false;
  55. }
  56. return true;
  57. }
  58. }