Commit 368a87a4 by yangliang

修改虹膜采集推送地址

parent 5bec81e1
......@@ -605,9 +605,16 @@ public class HmCjController {
res.put("jd","");
res.put("wd","");
Calendar cal = Calendar.getInstance();
int minute = cal.get(Calendar.MINUTE);
int second = cal.get(Calendar.SECOND);
String minute = cal.get(Calendar.MINUTE)+"";
String second = cal.get(Calendar.SECOND)+"";
if(minute.length()==1){
minute = "0"+minute;
}
if(second.length()==1){
second = "0"+second;
}
//res.put("cjbh","HM"+xyrC.getRybh().substring(1,19)+"01"+xyrC.getRybh().substring(19,23));
res.put("cjbh","HM"+user.getUnitcode()+dateNowStr+xyrC.getRybh().substring(21,23)+minute+second);
res.put("cjr_xm",user.getTrueName());
res.put("cjr_gmsfhm",user.getIdentitycard());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment