GoodsDeliveryTemplateLists.php 533 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\adminapi\lists\goods;
  3. use app\common\lists\BaseDataLists;
  4. use app\common\model\GoodsDeliveryTemplate;
  5. class GoodsDeliveryTemplateLists extends BaseDataLists
  6. {
  7. /**
  8. * @inheritDoc
  9. */
  10. public function lists(): array
  11. {
  12. return GoodsDeliveryTemplate::where($this->searchWhere)->order('id desc')->select()->toArray();
  13. }
  14. /**
  15. * @inheritDoc
  16. */
  17. public function count(): int
  18. {
  19. return GoodsDeliveryTemplate::where($this->searchWhere)->count();
  20. }
  21. }