diff --git a/mallinkAdmin/src/main/resources/db/migration/V201909170450__G_COUPON_PRESENT_CHANGED.sql b/mallinkAdmin/src/main/resources/db/migration/V201909170450__G_COUPON_PRESENT_CHANGED.sql new file mode 100644 index 000000000..b04fe25c4 --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V201909170450__G_COUPON_PRESENT_CHANGED.sql @@ -0,0 +1,2 @@ +alter table wx_coupon_present +add column send_amount int(11) default 0 not null comment '发送数量'; \ No newline at end of file diff --git a/mallinkService/src/main/resources/mapper/WxCouponPresentMapper.xml b/mallinkService/src/main/resources/mapper/WxCouponPresentMapper.xml index 098bee4d5..fba10885a 100644 --- a/mallinkService/src/main/resources/mapper/WxCouponPresentMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxCouponPresentMapper.xml @@ -9,10 +9,11 @@ + - `id`,`tenant_id`,`coupon_id`,`coupon_name`,`user_id`,`create_time`,`update_time` + `id`,`tenant_id`,`coupon_id`,`coupon_name`,`user_id`,`create_time`,`update_time`,`send_amount`