Commit 39c618c25e2f0cbcf0130de879ad492d43e3140f

Authored by liquanyu
1 parent f697a5284f

微量元素

Showing 2 changed files with 2 additions and 2 deletions

platform-dal/src/main/java/com/lyms/platform/query/BabyModelQuery.java View file @ 39c618c
... ... @@ -885,7 +885,7 @@
885 885 condition = condition.and("blNo", hasBlno, MongoOper.EXISTS);
886 886 }
887 887 if (null != numberCode) {
888   - condition = condition.and("mcertNo", "^" + numberCode, MongoOper.LIKE);
  888 + condition = condition.and("numberCode", numberCode, MongoOper.LIKE);
889 889 }
890 890  
891 891 if (-1 != visitstatus) {
platform-operate-api/src/main/java/com/lyms/hospitalapi/lcfy/LisService.java View file @ 39c618c
... ... @@ -39,7 +39,7 @@
39 39 itemsMan.put("lyms011","乙肝血清学检查");
40 40 itemsMan.put("lyms012","肝肾功能检测");
41 41 Connection conn = null;
42   - String sql = "insert into TI_申请信息(v患者类别,v患者编号,v患者ID号,v患者姓名,v性别,v年龄,v年龄类型,v申请项目编码,v申请项目名称,v唯一标识号,iTag,v手机号,v身份证号,d申请时间,v申请日期,i项目数量) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
  42 + String sql = "insert into TI_申请信息(v患者类别,v患者编号,v患者ID号,v患者姓名,v性别,v年龄,v年龄类型,v申请项目编码,v申请项目名称,v唯一标识号,iTag,v手机号,v身份证号,d申请时间,v申请日期,i项目数量) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
43 43 PreparedStatement ps = null;
44 44 ResultSet rs = null;
45 45 try {