记得上下班打卡 | 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
cbeb2a24
Commit
cbeb2a24
authored
May 14, 2021
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
票种问题 添加 次数
parent
c583c1fd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
0 deletions
+32
-0
TicketCreateParam.java
.../liquidnet/service/kylin/dto/param/TicketCreateParam.java
+6
-0
TicketVo.java
...ain/java/com/liquidnet/service/kylin/dto/vo/TicketVo.java
+3
-0
TicketPartnerVo.java
...quidnet/service/kylin/dto/vo/partner/TicketPartnerVo.java
+3
-0
PerformanceMemberAuditDao.java
...iquidnet/service/kylin/dao/PerformanceMemberAuditDao.java
+20
-0
No files found.
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/TicketCreateParam.java
View file @
cbeb2a24
...
@@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
...
@@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonIgnore;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.service.kylin.entity.*
;
import
com.liquidnet.service.kylin.entity.*
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.BeanUtils
;
...
@@ -80,6 +81,10 @@ public class TicketCreateParam implements Serializable {
...
@@ -80,6 +81,10 @@ public class TicketCreateParam implements Serializable {
@ApiModelProperty
(
value
=
"二维码显示时间"
,
example
=
"2020-12-01T14:00:00"
)
@ApiModelProperty
(
value
=
"二维码显示时间"
,
example
=
"2020-12-01T14:00:00"
)
private
LocalDateTime
qrCodeShowTime
;
private
LocalDateTime
qrCodeShowTime
;
@ApiModelProperty
(
value
=
"次数"
,
example
=
"1"
)
@NotNull
(
message
=
"不能为空"
)
private
int
counts
;
@ApiModelProperty
(
value
=
"是否开启缺票登记"
,
example
=
"1"
)
@ApiModelProperty
(
value
=
"是否开启缺票登记"
,
example
=
"1"
)
@NotNull
(
message
=
"不能为空"
)
@NotNull
(
message
=
"不能为空"
)
private
int
isLackRegister
;
private
int
isLackRegister
;
...
@@ -111,6 +116,7 @@ public class TicketCreateParam implements Serializable {
...
@@ -111,6 +116,7 @@ public class TicketCreateParam implements Serializable {
kylinTicketStatus
.
setStatusExchange
(
7
);
kylinTicketStatus
.
setStatusExchange
(
7
);
kylinTicketStatus
.
setSurplusExchange
(
this
.
totalExchange
);
kylinTicketStatus
.
setSurplusExchange
(
this
.
totalExchange
);
kylinTicketStatus
.
setSurplusGeneral
(
this
.
totalGeneral
);
kylinTicketStatus
.
setSurplusGeneral
(
this
.
totalGeneral
);
kylinTicketStatus
.
setCounts
(
this
.
counts
);
if
(
createdAt
!=
null
)
if
(
createdAt
!=
null
)
kylinTicketStatus
.
setCreatedAt
(
createdAt
);
kylinTicketStatus
.
setCreatedAt
(
createdAt
);
if
(
updatedAt
!=
null
)
if
(
updatedAt
!=
null
)
...
...
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/TicketVo.java
View file @
cbeb2a24
...
@@ -56,6 +56,8 @@ public class TicketVo {
...
@@ -56,6 +56,8 @@ public class TicketVo {
private
int
isElectronic
;
private
int
isElectronic
;
@ApiModelProperty
(
value
=
"是否快递票"
)
@ApiModelProperty
(
value
=
"是否快递票"
)
private
int
isExpress
;
private
int
isExpress
;
@ApiModelProperty
(
value
=
"可验证次数"
)
private
Integer
counts
;
@ApiModelProperty
(
value
=
"状态"
)
@ApiModelProperty
(
value
=
"状态"
)
private
int
status
;
private
int
status
;
@ApiModelProperty
(
value
=
"兑换状态"
)
@ApiModelProperty
(
value
=
"兑换状态"
)
...
@@ -108,6 +110,7 @@ public class TicketVo {
...
@@ -108,6 +110,7 @@ public class TicketVo {
this
.
isStudent
=
ticketStatus
.
getIsStudent
();
this
.
isStudent
=
ticketStatus
.
getIsStudent
();
this
.
limitCountMember
=
ticketStatus
.
getLimitCountMember
();
this
.
limitCountMember
=
ticketStatus
.
getLimitCountMember
();
this
.
limitCount
=
ticketStatus
.
getLimitCount
();
this
.
limitCount
=
ticketStatus
.
getLimitCount
();
this
.
counts
=
ticketStatus
.
getCounts
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/partner/TicketPartnerVo.java
View file @
cbeb2a24
...
@@ -46,6 +46,9 @@ public class TicketPartnerVo implements Serializable {
...
@@ -46,6 +46,9 @@ public class TicketPartnerVo implements Serializable {
@ApiModelProperty
(
value
=
"限购数量"
,
example
=
"0"
)
@ApiModelProperty
(
value
=
"限购数量"
,
example
=
"0"
)
private
int
limitCount
;
private
int
limitCount
;
@ApiModelProperty
(
value
=
"次数"
,
example
=
"0"
)
private
int
counts
;
@ApiModelProperty
(
value
=
"票种开售时间"
,
example
=
"2020-12-01T12:00:00"
)
@ApiModelProperty
(
value
=
"票种开售时间"
,
example
=
"2020-12-01T12:00:00"
)
private
String
timeStart
;
private
String
timeStart
;
...
...
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/PerformanceMemberAuditDao.java
0 → 100644
View file @
cbeb2a24
package
com
.
liquidnet
.
service
.
kylin
.
dao
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@ApiModel
@Data
public
class
PerformanceMemberAuditDao
{
@ApiModelProperty
(
value
=
"演出id"
)
private
String
performancesId
;
@ApiModelProperty
(
value
=
"演出名称"
)
private
String
title
;
@ApiModelProperty
(
value
=
"演出开始时间"
)
private
String
timeStart
;
@ApiModelProperty
(
value
=
"演出状态"
)
private
int
status
;
@ApiModelProperty
(
value
=
"排序位"
)
private
int
isRecommend
;
}
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