记得上下班打卡 | 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
0a0cd0de
Commit
0a0cd0de
authored
Oct 08, 2022
by
GaoHu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exit
parent
80d111c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
99 additions
and
0 deletions
+99
-0
KylinPerformancesVo.java
...net/service/kylin/dto/vo/partner/KylinPerformancesVo.java
+99
-0
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/partner/KylinPerformancesVo.java
0 → 100644
View file @
0a0cd0de
package
com
.
liquidnet
.
service
.
kylin
.
dto
.
vo
.
partner
;
import
com.liquidnet.service.kylin.dao.report.KylinPerformancesDto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
/**
* <p>
* 演出
* </p>
*
* @author liquidnet
* @since 2021-05-05
*/
@Data
public
class
KylinPerformancesVo
implements
Cloneable
{
/**
* 演出id
*/
@ApiModelProperty
(
value
=
"演出id"
)
private
String
performancesId
;
/**
* 演出名
*/
@ApiModelProperty
(
value
=
"演出名"
)
private
String
title
;
/**
* 城市
*/
@ApiModelProperty
(
value
=
"城市"
)
private
String
cityName
;
/**
* 总销售数量 -张 saleGeneral
*/
@ApiModelProperty
(
value
=
"总销售数量"
)
private
BigDecimal
open
;
/**
* 总销售金额 totalSalePrice
*/
@ApiModelProperty
(
value
=
"总销售金额 "
)
private
BigDecimal
totalSalePrice
;
/**
* 演出结束时间
*/
@ApiModelProperty
(
value
=
"演出结束时间"
)
private
LocalDateTime
timeEnd
;
/**
* 演出结束时间
*/
@ApiModelProperty
(
value
=
"演出结束时间"
)
private
LocalDateTime
timeStart
;
/**
* 顺序
*/
@ApiModelProperty
(
value
=
"顺序"
)
private
String
comment
;
/**
* 演出状态
*/
@ApiModelProperty
(
value
=
"演出状态"
)
private
int
status
;
/**
* 上下架标识【1:下架,0:上架】
*/
@ApiModelProperty
(
value
=
"上下架标识【1:下架,0:上架】"
)
private
int
type
;
private
static
final
KylinPerformancesVo
obj
=
new
KylinPerformancesVo
();
public
static
KylinPerformancesVo
getNew
()
{
try
{
return
(
KylinPerformancesVo
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
KylinPerformancesVo
();
}
}
public
Object
copyListAll
(
KylinPerformancesDto
kylinPerformancesDto
)
{
if
(
kylinPerformancesDto
==
null
)
return
null
;
this
.
performancesId
=
kylinPerformancesDto
.
getPerformancesId
();
this
.
title
=
kylinPerformancesDto
.
getTitle
();
this
.
type
=
kylinPerformancesDto
.
getType
();
this
.
status
=
kylinPerformancesDto
.
getStatus
();
return
this
;
}
}
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