记得上下班打卡 | 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
45ee5049
Commit
45ee5049
authored
Nov 19, 2021
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改演出列表 示例
parent
94961735
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
PerformancePartnerListParam.java
.../service/kylin/dto/param/PerformancePartnerListParam.java
+7
-7
InnerService.java
...net/client/admin/zhengzai/kylin/service/InnerService.java
+3
-2
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/PerformancePartnerListParam.java
View file @
45ee5049
...
@@ -14,24 +14,24 @@ public class PerformancePartnerListParam {
...
@@ -14,24 +14,24 @@ public class PerformancePartnerListParam {
private
String
merchantId
;
private
String
merchantId
;
@ApiModelProperty
(
value
=
"演出名称"
,
example
=
""
)
@ApiModelProperty
(
value
=
"演出名称"
,
example
=
""
)
private
String
title
;
private
String
title
;
@ApiModelProperty
(
value
=
"-2全部(不包括未提交)0未发布演出列表;3审核通过;6上线;7下架;8已结束;"
,
example
=
"
0
"
)
@ApiModelProperty
(
value
=
"-2全部(不包括未提交)0未发布演出列表;3审核通过;6上线;7下架;8已结束;"
,
example
=
"
-2
"
)
@NotNull
(
message
=
"演出状态不能为空"
)
@NotNull
(
message
=
"演出状态不能为空"
)
private
Integer
status
;
private
Integer
status
;
@ApiModelProperty
(
value
=
"-2全部,-1未提交审核,0审核中,1审核通过,2审核拒绝"
,
example
=
"
0
"
)
@ApiModelProperty
(
value
=
"-2全部,-1未提交审核,0审核中,1审核通过,2审核拒绝"
,
example
=
"
-2
"
)
@NotNull
(
message
=
"审核状态不能为空"
)
@NotNull
(
message
=
"审核状态不能为空"
)
private
Integer
auditStatus
;
private
Integer
auditStatus
;
@ApiModelProperty
(
value
=
"演出开始时间"
,
example
=
"2000-01-01 12:00:00"
)
@ApiModelProperty
(
value
=
"演出开始时间"
)
private
String
timeStart
;
private
String
timeStart
;
@ApiModelProperty
(
value
=
"演出结束时间"
,
example
=
"2000-01-01 12:00:00"
)
@ApiModelProperty
(
value
=
"演出结束时间"
)
private
String
timeEnd
;
private
String
timeEnd
;
@ApiModelProperty
(
value
=
"排序类型 1创建时间倒序 2创建时间正序 3演出时间倒序 4演出时间正序"
,
example
=
"
0
"
)
@ApiModelProperty
(
value
=
"排序类型 1创建时间倒序 2创建时间正序 3演出时间倒序 4演出时间正序"
,
example
=
"
1
"
)
@NotNull
(
message
=
"排序类型不能为空"
)
@NotNull
(
message
=
"排序类型不能为空"
)
private
Integer
orderType
;
private
Integer
orderType
;
@ApiModelProperty
(
value
=
"停售时间(单位天 -2全部)"
,
example
=
"-2"
)
@ApiModelProperty
(
value
=
"停售时间(单位天 -2全部)"
,
example
=
"-2"
)
private
long
stopSellDay
;
private
long
stopSellDay
;
@ApiModelProperty
(
value
=
"停售时间(单位天 -2全部)"
,
example
=
"-2"
,
hidden
=
true
)
@ApiModelProperty
(
value
=
"停售时间(单位天 -2全部)"
,
hidden
=
true
)
private
String
stopSellTime
;
private
String
stopSellTime
;
@ApiModelProperty
(
value
=
"页数"
,
example
=
"
0
"
)
@ApiModelProperty
(
value
=
"页数"
,
example
=
"
1
"
)
@NotNull
(
message
=
"页数不能为空"
)
@NotNull
(
message
=
"页数不能为空"
)
private
Integer
page
;
private
Integer
page
;
@ApiModelProperty
(
value
=
"数量"
,
example
=
"20"
)
@ApiModelProperty
(
value
=
"数量"
,
example
=
"20"
)
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/kylin/service/InnerService.java
View file @
45ee5049
...
@@ -21,6 +21,7 @@ import com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketPriceVo;
...
@@ -21,6 +21,7 @@ import com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketPriceVo;
import
com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketVo
;
import
com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketVo
;
import
com.liquidnet.service.kylin.dto.vo.ticketSystem.TimesVo
;
import
com.liquidnet.service.kylin.dto.vo.ticketSystem.TimesVo
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.MultiValueMap
;
import
org.springframework.util.MultiValueMap
;
...
@@ -35,8 +36,8 @@ import static com.liquidnet.commons.lang.util.DateUtil.DTF_YMD_HMS;
...
@@ -35,8 +36,8 @@ import static com.liquidnet.commons.lang.util.DateUtil.DTF_YMD_HMS;
@Service
@Service
public
class
InnerService
{
public
class
InnerService
{
//
@Value("${liquidnet.service.platform.url}")
@Value
(
"${liquidnet.service.platform.url}"
)
private
String
platform
=
"http://127.0.0.1:9003"
;
private
String
platform
;
@Autowired
@Autowired
RedisUtil
redisUtil
;
RedisUtil
redisUtil
;
@Autowired
@Autowired
...
...
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