From ed9a68f31226aa0ee9e595effb5740d8e29f8ab9 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Thu, 19 Sep 2019 16:58:35 +0800 Subject: [PATCH] =?UTF-8?q?[=E7=B3=BB=E7=BB=9F=E5=8F=91=E5=8D=A1][?= =?UTF-8?q?=E4=BF=AE=E6=94=B9][=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5SQL]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V201909170450__G_COUPON_PRESENT_CHANGED.sql | 2 ++ .../src/main/resources/mapper/WxCouponPresentMapper.xml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 mallinkAdmin/src/main/resources/db/migration/V201909170450__G_COUPON_PRESENT_CHANGED.sql 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`