From ebbe59b6ee3378fa296441cabe8bb81b2bc200b5 Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Mon, 26 Apr 2021 13:47:22 +0800 Subject: [PATCH] Merge branch 'score_shop' into api_score_meger --- zq-erp/src/main/resources/mybatis/mapper/activity/ActivitySignReceiveRecordDao.xml | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/activity/ActivitySignReceiveRecordDao.xml b/zq-erp/src/main/resources/mybatis/mapper/activity/ActivitySignReceiveRecordDao.xml index b9f2426..221ca35 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/activity/ActivitySignReceiveRecordDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/activity/ActivitySignReceiveRecordDao.xml @@ -14,10 +14,12 @@ c.cumulative_day cumulativeDay, c.award_type awardType, c.award_name awardName, + c.coupon_name couponName, + c.score_cnt scoreCnt, c.award_rule awardRule FROM activity_sign_receive_record a - LEFT JOIN biz_user b ON a.user_id = b.user_id + LEFT JOIN sys_vip_info b ON a.user_id = b.id LEFT JOIN activity_sign_award_set c ON a.award_id = c.id <where> a.company_id = #{record.companyId} @@ -120,7 +122,7 @@ a.state state, a.consignee_phone consigneePhone, a.consignee_address consigneeAddress, - a.consignee + a.consignee, a.receive_time receiveTime, a.write_off_code writeOffCode, 1 total, @@ -131,12 +133,13 @@ b.prize_start_time prizeStartTime, b.award_way awardWay, b.introduce_img introduceImg, + b.customer_phone customerPhone, b.award_name awardName FROM activity_sign_receive_record a LEFT JOIN activity_sign_award_set b ON a.award_id = b.id WHERE - a.award_id = #{record.awardId} + a.id = #{record.awardId} and a.company_id = #{record.companyId} and a.user_id = #{record.userId} </select> -- Gitblit v1.9.1