记得上下班打卡 | 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
4358b898
Commit
4358b898
authored
Mar 21, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_admin_log' into pre
parents
edbb8ecd
9efe0011
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
BusinessType.java
...com/liquidnet/client/admin/common/enums/BusinessType.java
+5
-0
KylinPerformancesController.java
...ontroller/zhengzai/kylin/KylinPerformancesController.java
+9
-4
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-common/src/main/java/com/liquidnet/client/admin/common/enums/BusinessType.java
View file @
4358b898
...
@@ -134,4 +134,9 @@ public enum BusinessType
...
@@ -134,4 +134,9 @@ public enum BusinessType
* 会员订单退款
* 会员订单退款
*/
*/
MORDER_REFUND
,
MORDER_REFUND
,
/**
* 修改
*/
PERFORMANCE_SAVE
,
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/kylin/KylinPerformancesController.java
View file @
4358b898
...
@@ -84,7 +84,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -84,7 +84,7 @@ public class KylinPerformancesController extends BaseController {
return
prefix
+
"/details"
;
return
prefix
+
"/details"
;
}
}
@Log
(
title
=
"演出
列表
"
,
businessType
=
BusinessType
.
AUDIT
)
@Log
(
title
=
"演出
审核
"
,
businessType
=
BusinessType
.
AUDIT
)
@PostMapping
(
value
=
"/audit"
)
@PostMapping
(
value
=
"/audit"
)
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@ResponseBody
@ResponseBody
...
@@ -96,11 +96,12 @@ public class KylinPerformancesController extends BaseController {
...
@@ -96,11 +96,12 @@ public class KylinPerformancesController extends BaseController {
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@PostMapping
(
value
=
"/isShow"
)
@PostMapping
(
value
=
"/isShow"
)
@ResponseBody
@ResponseBody
@Log
(
title
=
"演出管理:是否显示"
,
businessType
=
BusinessType
.
PERFORMANCE_SAVE
)
public
AjaxResult
setIsShow
(
String
performancesId
,
Integer
isShow
)
{
public
AjaxResult
setIsShow
(
String
performancesId
,
Integer
isShow
)
{
return
toAjax
(
kylinPerformancesService
.
setIsShow
(
performancesId
,
isShow
));
return
toAjax
(
kylinPerformancesService
.
setIsShow
(
performancesId
,
isShow
));
}
}
@Log
(
title
=
"演出列表"
,
businessType
=
BusinessType
.
DETAIL
)
//
@Log(title = "演出列表", businessType = BusinessType.DETAIL)
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@GetMapping
(
value
=
"/memberInfo/{performancesId}"
)
@GetMapping
(
value
=
"/memberInfo/{performancesId}"
)
public
String
memberInfo
(
@PathVariable
(
"performancesId"
)
String
performancesId
,
ModelMap
mmap
)
{
public
String
memberInfo
(
@PathVariable
(
"performancesId"
)
String
performancesId
,
ModelMap
mmap
)
{
...
@@ -109,7 +110,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -109,7 +110,7 @@ public class KylinPerformancesController extends BaseController {
return
prefix
+
"/memberInfo"
;
return
prefix
+
"/memberInfo"
;
}
}
@Log
(
title
=
"演出
列表"
,
businessType
=
BusinessType
.
UPDAT
E
)
@Log
(
title
=
"演出
管理:提交会员信息"
,
businessType
=
BusinessType
.
PERFORMANCE_SAV
E
)
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@PostMapping
(
value
=
"/memberInfo/submit"
)
@PostMapping
(
value
=
"/memberInfo/submit"
)
@ResponseBody
@ResponseBody
...
@@ -118,7 +119,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -118,7 +119,7 @@ public class KylinPerformancesController extends BaseController {
return
toAjax
(
result
);
return
toAjax
(
result
);
}
}
@Log
(
title
=
"演出列表-演出数据"
,
businessType
=
BusinessType
.
LIST
)
//
@Log(title = "演出列表-演出数据", businessType = BusinessType.LIST)
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@GetMapping
(
value
=
"/performanceStatic/{performancesId}"
)
@GetMapping
(
value
=
"/performanceStatic/{performancesId}"
)
public
String
performanceStatic
(
@PathVariable
(
"performancesId"
)
String
performancesId
,
ModelMap
mmap
)
{
public
String
performanceStatic
(
@PathVariable
(
"performancesId"
)
String
performancesId
,
ModelMap
mmap
)
{
...
@@ -172,6 +173,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -172,6 +173,7 @@ public class KylinPerformancesController extends BaseController {
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@PostMapping
(
value
=
"/agent/change"
)
@PostMapping
(
value
=
"/agent/change"
)
@ResponseBody
@ResponseBody
@Log
(
title
=
"演出管理:票种代理"
,
businessType
=
BusinessType
.
PERFORMANCE_SAVE
)
public
AjaxResult
changeTicketAgent
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"ticketsId"
)
String
ticketsId
,
@RequestParam
(
"status"
)
Integer
status
)
{
public
AjaxResult
changeTicketAgent
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"ticketsId"
)
String
ticketsId
,
@RequestParam
(
"status"
)
Integer
status
)
{
boolean
result
=
kylinPerformancesService
.
changeTicketAgent
(
performancesId
,
ticketsId
,
status
);
boolean
result
=
kylinPerformancesService
.
changeTicketAgent
(
performancesId
,
ticketsId
,
status
);
return
toAjax
(
result
);
return
toAjax
(
result
);
...
@@ -179,6 +181,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -179,6 +181,7 @@ public class KylinPerformancesController extends BaseController {
@PostMapping
(
value
=
"/payTxt/change"
)
@PostMapping
(
value
=
"/payTxt/change"
)
@ResponseBody
@ResponseBody
@Log
(
title
=
"演出管理:支付文案"
,
businessType
=
BusinessType
.
PERFORMANCE_SAVE
)
public
AjaxResult
changeTicketPayTxt
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"ticketsId"
)
String
ticketsId
,
@RequestParam
(
"payTxt"
)
String
payTxt
)
{
public
AjaxResult
changeTicketPayTxt
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"ticketsId"
)
String
ticketsId
,
@RequestParam
(
"payTxt"
)
String
payTxt
)
{
boolean
result
=
kylinPerformancesService
.
changeTicketPayTxt
(
performancesId
,
ticketsId
,
payTxt
);
boolean
result
=
kylinPerformancesService
.
changeTicketPayTxt
(
performancesId
,
ticketsId
,
payTxt
);
return
toAjax
(
result
);
return
toAjax
(
result
);
...
@@ -213,6 +216,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -213,6 +216,7 @@ public class KylinPerformancesController extends BaseController {
//@RequiresPermissions("kylin:performances:view")
//@RequiresPermissions("kylin:performances:view")
@PostMapping
(
value
=
"/refundConfig/change"
)
@PostMapping
(
value
=
"/refundConfig/change"
)
@ResponseBody
@ResponseBody
@Log
(
title
=
"演出管理:退款配置"
,
businessType
=
BusinessType
.
PERFORMANCE_SAVE
)
public
AjaxResult
changeRefundConfig
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
public
AjaxResult
changeRefundConfig
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"isCanRefund"
)
Integer
isCanRefund
,
@RequestParam
(
"isCanRefund"
)
Integer
isCanRefund
,
@RequestParam
(
"refundOpenTime"
)
String
refundOpenTime
,
@RequestParam
(
"refundOpenTime"
)
String
refundOpenTime
,
...
@@ -249,6 +253,7 @@ public class KylinPerformancesController extends BaseController {
...
@@ -249,6 +253,7 @@ public class KylinPerformancesController extends BaseController {
@PostMapping
(
value
=
"/transferConfig/change"
)
@PostMapping
(
value
=
"/transferConfig/change"
)
@ResponseBody
@ResponseBody
@Log
(
title
=
"演出管理:转赠配置"
,
businessType
=
BusinessType
.
PERFORMANCE_SAVE
)
public
AjaxResult
changeTransferConfig
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
public
AjaxResult
changeTransferConfig
(
@RequestParam
(
"performancesId"
)
String
performancesId
,
@RequestParam
(
"isCanTransfer"
)
Integer
isCanTransfer
,
@RequestParam
(
"isCanTransfer"
)
Integer
isCanTransfer
,
@RequestParam
(
"transferStartTime"
)
String
transferStartTime
,
@RequestParam
(
"transferStartTime"
)
String
transferStartTime
,
...
...
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