|
|
@@ -374,6 +374,7 @@ public class KcswServiceImpl implements KcswService{
|
|
374
|
374
|
Integer gb = 0;
|
|
375
|
375
|
String rq = "";
|
|
376
|
376
|
Integer scnf = null;
|
|
|
377
|
+ Double kcsl = 0.0;
|
|
377
|
378
|
if(list.size()>0 && list!=null){
|
|
378
|
379
|
pz = Integer.parseInt(list.get(0).getPz());
|
|
379
|
380
|
mxpz = Integer.parseInt(list.get(0).getMxpz());
|
|
|
@@ -382,6 +383,7 @@ public class KcswServiceImpl implements KcswService{
|
|
382
|
383
|
gb = Integer.parseInt(list.get(0).getGb());
|
|
383
|
384
|
rq = ParameterUtil.datetime2string(list.get(0).getRq());
|
|
384
|
385
|
scnf = list.get(0).getScnf();
|
|
|
386
|
+ kcsl = list.get(0).getKcsl();
|
|
385
|
387
|
}
|
|
386
|
388
|
modelMap.put("pz", pz);
|
|
387
|
389
|
modelMap.put("mxpz", mxpz);
|
|
|
@@ -390,6 +392,7 @@ public class KcswServiceImpl implements KcswService{
|
|
390
|
392
|
modelMap.put("gb", gb);
|
|
391
|
393
|
modelMap.put("rq", rq);
|
|
392
|
394
|
modelMap.put("scnf", scnf);
|
|
|
395
|
+ modelMap.put("kcsl", kcsl);
|
|
393
|
396
|
return modelMap;
|
|
394
|
397
|
}
|
|
395
|
398
|
|