12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\dao\activity\table;
- use app\dao\BaseDao;
- use app\model\activity\table\TableSeats;
- class TableSeatsDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return TableSeats::class;
- }
-
- public function tableSeats(int $storeId, array $where)
- {
- return $this->search($where)->where(['store_id' => $storeId])->order('number Asc')->select()->toArray();
- }
- }
|