|
|
@@ -97,11 +97,13 @@ public class HlwCompanySubcontractorApiController extends JeecgController<HlwCom
|
|
|
Integer applicationId = jsonObject.getInteger("applicationId");
|
|
|
Integer pageSize = jsonObject.getInteger("pageSize");
|
|
|
Integer applicationType = jsonObject.getInteger("applicationType");
|
|
|
+ Integer repeatType = jsonObject.getInteger("repeatType");
|
|
|
log.info("companyCode========={}", companyCode);
|
|
|
//根据companyCode获取HlwCompany实体
|
|
|
HlwCompany hlwCompany = hlwCompanyService.getByCompanyCode(companyCode);
|
|
|
HlwCompanySubcontractor hlwCompanySubcontractor = new HlwCompanySubcontractor();
|
|
|
hlwCompanySubcontractor.setCompanyId(hlwCompany.getId());
|
|
|
+ hlwCompanySubcontractor.setRepeatType(repeatType);
|
|
|
if (hlwCompany != null) {
|
|
|
if (pageSize == -1) {
|
|
|
//设置为“-1”表示不进行分页
|