|
|
@@ -287,6 +287,21 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
return (Pagination<OutPublicStatistics>) findPage("listPublicStatistics", "countPublicStatistics", map, in.getPageNo(), in.getPageSize());
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
+ @Override
|
|
|
+ public List<OutPublicStatistics> publicReleaseStatisticsList(InputPublicStatistics in) {
|
|
|
+ Map<String,Object> map =new HashMap<String, Object>();
|
|
|
+ if(in.getAid()!=null)map.put("aid", in.getAid());
|
|
|
+ if(in.getDepId()!=null)map.put("depId", in.getDepId());
|
|
|
+ if(in.getClockStart()!=null)map.put("clockStart", in.getClockStart());
|
|
|
+ if(in.getClockEnd()!=null)map.put("clockEnd", in.getClockEnd()+" 23:59:59");
|
|
|
+ if(in.getCreateStart()!=null)map.put("createStart", in.getCreateStart());
|
|
|
+ if(in.getCreateEnd()!=null)map.put("createEnd", in.getCreateEnd()+" 23:59:59");
|
|
|
+ return (List<OutPublicStatistics>) findList("listPublicStatistics",map, in.getPageNo(), 99999);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
@@ -302,6 +317,18 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
if(in.getStatus()!=null)map.put("status", in.getStatus());
|
|
|
return (Pagination<OutPublicDtails>) findPage("listPublicDtails", "countPublicDtails", map, in.getPageNo(), in.getPageSize());
|
|
|
}
|
|
|
+
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
+ @Override
|
|
|
+ public List<OutPublicDtails> publicReleaseListDtailsList(InputPublicDtails in) {
|
|
|
+ Map<String,Object> map =new HashMap<String, Object>();
|
|
|
+ if(in.getAid()!=null)map.put("aid", in.getAid());
|
|
|
+ if(in.getReleaseStart()!=null)map.put("releaseStart", in.getReleaseStart());
|
|
|
+ if(in.getReleaseEnd()!=null)map.put("releaseEnd", in.getReleaseEnd()+" 23:59:59");
|
|
|
+ if(in.getUid()!=null)map.put("uid", in.getUid());
|
|
|
+ if(in.getStatus()!=null)map.put("status", in.getStatus());
|
|
|
+ return (List<OutPublicDtails>) findList("listPublicDtails", map, in.getPageNo(), 99999);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
@@ -326,6 +353,13 @@ public class PublicReleaseServiceImpl extends BaseMybatisDao<PublicReleaseMapper
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|