记得上下班打卡 | git大法好,push需谨慎

Commit a72599dd authored by 张国柄's avatar 张国柄

+++

parent 276ee79e
...@@ -35,7 +35,7 @@ create table candy_mgt_coupon ...@@ -35,7 +35,7 @@ create table candy_mgt_coupon
coupon_id varchar(64) not null comment '~candy_coupon.coupon_id', coupon_id varchar(64) not null comment '~candy_coupon.coupon_id',
state tinyint comment '发放状态[0-未发放|1-已发放|2-无效|9-发放中]', state tinyint comment '发放状态[0-未发放|1-已发放|2-无效|9-发放中]',
# bind_type smallint comment '领取方式[0-用户输入兑换|1-发放至用户]', # bind_type smallint comment '领取方式[0-用户输入兑换|1-发放至用户]',
event_amt int comment '发放量', event_amt int comment '发放量',
event_type tinyint comment '发放类型[10-全体用户|1-会员|2-手机号]', event_type tinyint comment '发放类型[10-全体用户|1-会员|2-手机号]',
event_limit text comment '`发放类型`为2-手机号时发放手机号以,分隔', event_limit text comment '`发放类型`为2-手机号时发放手机号以,分隔',
...@@ -115,7 +115,7 @@ create table candy_coupon_code ...@@ -115,7 +115,7 @@ create table candy_coupon_code
coupon_id varchar(64) not null comment '~candy_coupon.coupon_id', coupon_id varchar(64) not null comment '~candy_coupon.coupon_id',
state tinyint comment '状态[0-未使用|1-已使用|2-失效|3-退回]', state tinyint comment '状态[0-未使用|1-已使用|2-失效|3-退回]',
used_uid varchar(64) comment '兑换用户UID', redeem_uid varchar(64) comment '兑换用户UID',
created_at datetime(3) not null, created_at datetime(3) not null,
updated_at datetime(3), updated_at datetime(3),
......
...@@ -42,7 +42,7 @@ public class CandyCouponCode implements Serializable { ...@@ -42,7 +42,7 @@ public class CandyCouponCode implements Serializable {
/** /**
* 兑换用户UID * 兑换用户UID
*/ */
private String usedUid; private String redeemUid;
private LocalDateTime createdAt; private LocalDateTime createdAt;
......
...@@ -90,7 +90,7 @@ create table candy_coupon_code ...@@ -90,7 +90,7 @@ create table candy_coupon_code
coupon_id varchar(64) not null comment '~candy_coupon.coupon_id', coupon_id varchar(64) not null comment '~candy_coupon.coupon_id',
state tinyint comment '状态[0-未使用|1-已使用|2-失效|3-退回]', state tinyint comment '状态[0-未使用|1-已使用|2-失效|3-退回]',
used_uid varchar(64) comment '兑换用户UID', redeem_uid varchar(64) comment '兑换用户UID',
created_at datetime(3) not null, created_at datetime(3) not null,
updated_at datetime(3), updated_at datetime(3),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment