记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
b8d335c0
Commit
b8d335c0
authored
Nov 26, 2021
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+字段:券发放任务表;
parent
c0021939
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
CandyMgtCoupon.java
...va/com/liquidnet/service/candy/entity/CandyMgtCoupon.java
+9
-0
db_ln_candy_initialdata.sql
...idnet-service-candy-impl/docu/db_ln_candy_initialdata.sql
+3
-1
No files found.
liquidnet-bus-do/liquidnet-service-candy-do/src/main/java/com/liquidnet/service/candy/entity/CandyMgtCoupon.java
View file @
b8d335c0
...
@@ -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
;
/**
/**
* 操作人
* 操作人
*/
*/
...
...
liquidnet-bus-service/liquidnet-service-candy/liquidnet-service-candy-impl/docu/db_ln_candy_initialdata.sql
View file @
b8d335c0
...
@@ -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
;
-- >>------------------------------------------------------------------------------------
-- >>------------------------------------------------------------------------------------
-- >>------------------------------------------------------------------------------------
-- >>------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment