Commit 0dfcdabe662ccb644ed8400f5bb49f1c59a9d9b0

Authored by litao@lymsh.com
1 parent 5740837c32

统计

Showing 2 changed files with 2 additions and 2 deletions

platform-biz-service/src/main/resources/mainOrm/master/CouponMapper.xml View file @ 0dfcdab
... ... @@ -533,7 +533,7 @@
533 533 </select>
534 534  
535 535 <select id="findUnUsed" parameterType="map" resultType="map">
536   - select count(distinct(user_id)) as un_used_people, count(1) as un_used_coupon_count, b.province_id, b.city_id, b.area_id, b.name as hospitalName
  536 + select count(distinct(user_id)) as un_used_people, count(1) as un_used_coupon_count, b.province_id, b.city_id, b.area_id, b.name as hospitalName, a.create_hospital_id
537 537 from coupon_info a, organization b
538 538 where a.create_hospital_id = b.id and a.status = 1 and a.create_hospital_id in
539 539 <foreach collection="hospitalIds" open="(" close=")" separator="," item="hid">
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ReportController.java View file @ 0dfcdab
... ... @@ -91,7 +91,7 @@
91 91 }
92 92  
93 93 /**
94   - * 未使用优惠券统计详情
  94 + * 未使用优惠券--未使用券产检次数
95 95 */
96 96 @RequestMapping(value = "/coupon/unUsed/info", method = RequestMethod.GET)
97 97 @ResponseBody