|
|
@@ -7,6 +7,7 @@ import java.util.Map;
|
|
7
|
7
|
import javax.annotation.Resource;
|
|
8
|
8
|
import javax.servlet.http.HttpServletRequest;
|
|
9
|
9
|
|
|
|
10
|
+import com.chinaitop.depot.utils.ParameterUtil;
|
|
10
|
11
|
import org.apache.commons.lang.ObjectUtils;
|
|
11
|
12
|
import org.springframework.stereotype.Service;
|
|
12
|
13
|
|
|
|
@@ -125,4 +126,20 @@ public class StorageAccountRecordServiceImpl implements StorageAccountRecordServ
|
|
125
|
126
|
}
|
|
126
|
127
|
return pageInfo;
|
|
127
|
128
|
}
|
|
|
129
|
+
|
|
|
130
|
+ @Override
|
|
|
131
|
+ public Map<String, Object> getCountSumAccountzl(Integer orgId, Integer lspz, Integer lsxz) {
|
|
|
132
|
+ Map<String, Object> map = new HashMap<String, Object>();
|
|
|
133
|
+ if (lspz != null) {
|
|
|
134
|
+ map.put("pz", lspz+"");
|
|
|
135
|
+ }
|
|
|
136
|
+ if (lsxz != null) {
|
|
|
137
|
+ map.put("hwxz", lsxz+"");
|
|
|
138
|
+ }
|
|
|
139
|
+
|
|
|
140
|
+ if (null != orgId && !"".equals(orgId)) {
|
|
|
141
|
+ map.put("orgId", orgId);
|
|
|
142
|
+ }
|
|
|
143
|
+ return mapper.getCountSumAccountzl(map);
|
|
|
144
|
+ }
|
|
128
|
145
|
}
|