Commit cc57679ac4914fbba9612d5fd3730aa642af8ac2
1 parent
ee84821d6e
Exists in
master
and in
6 other branches
证件号
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 @
cc57679
... | ... | @@ -255,8 +255,8 @@ |
255 | 255 | Patients patients = mongoTemplate.findOne(Query.query(Criteria.where("pid").is(couponInfo.getUserId())), Patients.class); |
256 | 256 | if(patients != null) { |
257 | 257 | restMap.put("vcCardNo", patients.getVcCardNo()); /** 就诊卡号 */ |
258 | - restMap.put("hcertificateNum", patients.getHcertificateNum()); /** 证件号 */ | |
259 | - restMap.put("hcertificateTypeId", patients.getHcertificateTypeId()); /** 证件类型id */ | |
258 | + restMap.put("cardNo", patients.getCardNo()); /** 证件号 */ | |
259 | + restMap.put("pcerteTypeId", patients.getPcerteTypeId()); /** 证件类型id */ | |
260 | 260 | } |
261 | 261 | |
262 | 262 |