记得上下班打卡 | 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
d7dcf71b
Commit
d7dcf71b
authored
Mar 30, 2022
by
GaoHu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exit vo
parent
f75e8076
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
SaleDataVo.java
...liquidnet/client/admin/zhengzai/smile/dto/SaleDataVo.java
+6
-0
ShowAgentVo.java
...iquidnet/client/admin/zhengzai/smile/dto/ShowAgentVo.java
+6
-0
UserData.java
...m/liquidnet/client/admin/zhengzai/smile/dto/UserData.java
+5
-0
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/SaleDataVo.java
View file @
d7dcf71b
package
com
.
liquidnet
.
client
.
admin
.
zhengzai
.
smile
.
dto
;
package
com
.
liquidnet
.
client
.
admin
.
zhengzai
.
smile
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
import
java.util.List
;
import
java.util.List
;
...
@@ -13,26 +14,31 @@ public class SaleDataVo {
...
@@ -13,26 +14,31 @@ public class SaleDataVo {
/**
/**
* 演出id
* 演出id
*/
*/
@ApiModelProperty
(
value
=
"演出id"
,
example
=
""
)
private
String
performancesId
;
private
String
performancesId
;
/**
/**
* 演出名称
* 演出名称
*/
*/
@ApiModelProperty
(
value
=
"演出名称"
,
example
=
""
)
private
String
title
;
private
String
title
;
/**
/**
* 演出打款状态
* 演出打款状态
*/
*/
@ApiModelProperty
(
value
=
"演出打款状态"
,
example
=
""
)
private
Integer
priceStatus
;
private
Integer
priceStatus
;
/**
/**
* 票提设置集合
* 票提设置集合
*/
*/
@ApiModelProperty
(
value
=
"票提设置集合"
,
example
=
""
)
private
List
<
ShowAgentVo
>
showAgentVoList
;
private
List
<
ShowAgentVo
>
showAgentVoList
;
/**
/**
* 代理数据
* 代理数据
*/
*/
@ApiModelProperty
(
value
=
"代理数据"
,
example
=
""
)
private
List
<
UserData
>
userDataList
;
private
List
<
UserData
>
userDataList
;
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/ShowAgentVo.java
View file @
d7dcf71b
package
com
.
liquidnet
.
client
.
admin
.
zhengzai
.
smile
.
dto
;
package
com
.
liquidnet
.
client
.
admin
.
zhengzai
.
smile
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
...
@@ -15,26 +16,31 @@ public class ShowAgentVo {
...
@@ -15,26 +16,31 @@ public class ShowAgentVo {
/**
/**
* 演出id
* 演出id
*/
*/
@ApiModelProperty
(
value
=
"演出id"
,
example
=
""
)
private
String
performanceId
;
private
String
performanceId
;
/**
/**
* 票id
* 票id
*/
*/
@ApiModelProperty
(
value
=
"票id"
,
example
=
""
)
private
String
ticketId
;
private
String
ticketId
;
/**
/**
* 票种名称
* 票种名称
*/
*/
@ApiModelProperty
(
value
=
"票种名称"
,
example
=
""
)
private
String
title
;
private
String
title
;
/**
/**
* 总代票提
* 总代票提
*/
*/
@ApiModelProperty
(
value
=
"总代票提"
,
example
=
""
)
private
BigDecimal
totalCarry
;
private
BigDecimal
totalCarry
;
/**
/**
* 普代票提
* 普代票提
*/
*/
@ApiModelProperty
(
value
=
"普代票提"
,
example
=
""
)
private
BigDecimal
ordCarry
;
private
BigDecimal
ordCarry
;
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/UserData.java
View file @
d7dcf71b
...
@@ -16,26 +16,31 @@ public class UserData {
...
@@ -16,26 +16,31 @@ public class UserData {
/**
/**
* 用户uid
* 用户uid
*/
*/
@ApiModelProperty
(
value
=
"用户uid"
,
example
=
""
)
private
String
uid
;
private
String
uid
;
/**
/**
* 用户名称
* 用户名称
*/
*/
@ApiModelProperty
(
value
=
"用户名称"
,
example
=
""
)
private
String
username
;
private
String
username
;
/**
/**
* 城市名称
* 城市名称
*/
*/
@ApiModelProperty
(
value
=
"城市名称"
,
example
=
""
)
private
String
cityName
;
private
String
cityName
;
/**
/**
* 身份 1。总代 2.普代
* 身份 1。总代 2.普代
*/
*/
@ApiModelProperty
(
value
=
"身份 1。总代 2.普代"
,
example
=
""
)
private
Integer
type
;
private
Integer
type
;
/**
/**
* 打款状态
* 打款状态
*/
*/
@ApiModelProperty
(
value
=
"打款状态"
,
example
=
""
)
private
Integer
priceStatus
;
private
Integer
priceStatus
;
@ApiModelProperty
(
value
=
"活动名字"
)
@ApiModelProperty
(
value
=
"活动名字"
)
...
...
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