12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace app\dao\work;
- use app\dao\BaseDao;
- use app\model\work\WorkMemberRelation;
- class WorkMemberRelationDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return WorkMemberRelation::class;
- }
-
- public function getMemberRelationList(array $where, array $field = ['*'])
- {
- return $this->getModel()->where($where)->field($field)->select()->toArray();
- }
- }
|