|
|
@@ -1736,7 +1736,21 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
|
|
|
@Override
|
|
|
public Object listAssist(InputListAssist in) {
|
|
|
- Pagination<OutListAssist> page = (Pagination<OutListAssist>) findPage("findAssistList", "findAssistCount", in);
|
|
|
+ Map<String, Object> params = new HashMap<>();
|
|
|
+ //把参数放入map中
|
|
|
+ params.put("startTime", in.getStartTime());
|
|
|
+ params.put("endTime", in.getEndTime());
|
|
|
+ params.put("contentType", in.getContentType());
|
|
|
+ params.put("aid", in.getAid());
|
|
|
+ params.put("assistAid", in.getAssistAid());
|
|
|
+ params.put("uid", in.getUid());
|
|
|
+ params.put("type", in.getType());
|
|
|
+ if (in.getAssistType()!=null){
|
|
|
+ params.put("assistType", in.getAssistType().split(","));
|
|
|
+ }
|
|
|
+ params.put("depId", in.getDepId());
|
|
|
+ params.put("assistCount", in.getAssistCount());
|
|
|
+ Pagination<OutListAssist> page = (Pagination<OutListAssist>) findPage("findAssistList", "findAssistCount", params, in.getPageNo(), in.getPageSize());
|
|
|
for (OutListAssist e : (List<OutListAssist>)page.getList()) {
|
|
|
pushTypeName(e);
|
|
|
}
|