StoreOrderEconomizeDao.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. namespace app\dao\order;
  12. use app\dao\BaseDao;
  13. use app\model\order\StoreOrderEconomize;
  14. /**
  15. * Class StoreOrderEconomizeDao
  16. * @package app\dao\order
  17. */
  18. class StoreOrderEconomizeDao extends BaseDao
  19. {
  20. protected function setModel(): string
  21. {
  22. return StoreOrderEconomize::class;
  23. }
  24. /**
  25. * @param array $where
  26. * @return array
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. */
  31. public function getList(array $where)
  32. {
  33. return $this->getModel()->where($where)->select()->toArray();
  34. }
  35. }