Merge branch 'dev' of https://gitea.lihaink.cn/mkm/TaskSystem into dev
This commit is contained in:
commit
e11b7bbd01
@ -95,5 +95,11 @@ class DictDataController extends BaseAdminController
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
public function getContractPartyACompanyTypeList()
|
||||
{
|
||||
$result = DictDataLogic::getContractPartyACompanyTypeList();
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -80,5 +80,8 @@ class DictDataLogic extends BaseLogic
|
||||
return DictData::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
|
||||
|
||||
public static function getContractPartyACompanyTypeList()
|
||||
{
|
||||
return DictData::whereIn('id', [30,16,41])->order('sort')->select()->toArray();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user