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

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

+字段:券发放任务表;

parent c0021939
...@@ -56,6 +56,15 @@ public class CandyMgtCoupon implements Serializable { ...@@ -56,6 +56,15 @@ public class CandyMgtCoupon implements Serializable {
*/ */
private LocalDateTime eventAt; private LocalDateTime eventAt;
/**
* 专享标识[0-常规|1-会员专属]
* <p>
* 同`candy_coupon.exclusive`,按实际需求场景灵活使用;
* 目前`candy_coupon.exclusive`用于根据会员有效期设置券有效期;
* </p>
*/
private Integer exclusively;
/** /**
* 操作人 * 操作人
*/ */
......
...@@ -150,7 +150,9 @@ create table candy_common_coupon ...@@ -150,7 +150,9 @@ create table candy_common_coupon
updated_at datetime(3), updated_at datetime(3),
comment varchar(255) comment varchar(255)
) engine = InnoDB comment '公有券信息'; ) engine = InnoDB comment '公有券信息';
-- >>------------------------------------------------------------------------------------ -- >>------------------------------------------------------------------------------------|20211125会员券发放调整
# `candy_coupon.exclusive`,按实际需求场景灵活使用,目前`candy_coupon.exclusive`用于根据会员有效期设置券有效期;
alter table candy_mgt_coupon add exclusively int default 0 null comment '专享标识[0-常规|1-会员专属]' after event_at;
-- >>------------------------------------------------------------------------------------ -- >>------------------------------------------------------------------------------------
-- >>------------------------------------------------------------------------------------ -- >>------------------------------------------------------------------------------------
......
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