update:可以作为甲方签约的公司类型列表
This commit is contained in:
parent
2c852ee985
commit
d0202a70bf
@ -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])->select('id', 'name')->order('sort')->get()->toArray();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user