Commit 05a1163596073b73908b19619162b27d8badd28c
1 parent
08b27e0f92
Exists in
master
and in
1 other branch
bug修复
Showing 1 changed file with 2 additions and 2 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java
View file @
05a1163
... | ... | @@ -326,8 +326,8 @@ |
326 | 326 | if(person.getType() == 2) { |
327 | 327 | BabyModel baby = mongoTemplate.findOne(Query.query(Criteria.where("pid").is(userId)), BabyModel.class); |
328 | 328 | restMap.put("vcCardNo", baby.getVcCardNo()); /** 就诊卡号 */ |
329 | - restMap.put("cardNo", baby.getCardNo()); /** 证件号 */ | |
330 | - restMap.put("pcerteTypeId", baby.getFcertTypeId()); /** 证件类型id */ | |
329 | + restMap.put("cardNo", baby.getMcertNo()); /** 证件号 */ | |
330 | + restMap.put("pcerteTypeId", baby.getMcertTypeId()); /** 证件类型id */ | |
331 | 331 | } else { |
332 | 332 | Patients patients = mongoTemplate.findOne(Query.query(Criteria.where("pid").is(userId)), Patients.class); |
333 | 333 | if(patients != null) { |