|
|
@@ -117,6 +117,10 @@ public class DemandServiceImpl extends BaseMybatisDao<DemandMapper> implements D
|
|
|
if (StringUtils.isNotBlank(employerName)){
|
|
|
params.put("employerName", employerName);
|
|
|
}
|
|
|
+
|
|
|
+ if (StringUtils.isNotBlank(username)){
|
|
|
+ params.put("username", username);
|
|
|
+ }
|
|
|
|
|
|
return (Pagination<DemandManageListBo>) findPage("findManageUserDemandListByPage", "findManageUserDemandCount",
|
|
|
params, pNo, pSize);
|
|
|
@@ -156,6 +160,10 @@ public class DemandServiceImpl extends BaseMybatisDao<DemandMapper> implements D
|
|
|
if (StringUtils.isNotBlank(employerName)){
|
|
|
params.put("employerName", employerName);
|
|
|
}
|
|
|
+
|
|
|
+ if (StringUtils.isNotBlank(username)){
|
|
|
+ params.put("unitName", username);
|
|
|
+ }
|
|
|
|
|
|
return (Pagination<DemandManageListBo>) findPage("findManageOrgDemandListByPage", "findManageOrgDemandCount",
|
|
|
params, pNo, pSize);
|