记得上下班打卡 | git大法好,push需谨慎

Commit 39c933b5 authored by 胡佳晨's avatar 胡佳晨

接口提交

parent 6d0a26a9
...@@ -36,7 +36,7 @@ public class KylinPerformancesAdminController { ...@@ -36,7 +36,7 @@ public class KylinPerformancesAdminController {
@PostMapping(value = "list") @PostMapping(value = "list")
@ApiOperation(value = "获取列表") @ApiOperation(value = "获取列表")
@ApiResponse(response = PerformanceAdminListDao.class, code = 200, message = "接口返回对象参数") @ApiResponse(response = PerformanceAdminListDao.class, code = 200, message = "接口返回对象参数")
public ResponseDto<PageInfo<PerformanceAdminListDao>> performanceDetails(@RequestBody @Valid PerformanceAdminListParam performanceAdminListParam) { public ResponseDto<PageInfo<PerformanceAdminListDao>> getList(@RequestBody @Valid PerformanceAdminListParam performanceAdminListParam) {
PageInfo<PerformanceAdminListDao> result = null; PageInfo<PerformanceAdminListDao> result = null;
result = performancesAdminService.getList(performanceAdminListParam); result = performancesAdminService.getList(performanceAdminListParam);
if (null != result) { if (null != result) {
...@@ -59,10 +59,10 @@ public class KylinPerformancesAdminController { ...@@ -59,10 +59,10 @@ public class KylinPerformancesAdminController {
} }
} }
@GetMapping(value = "audit") @PostMapping(value = "audit")
@ApiOperation(value = "演出审核") @ApiOperation(value = "演出审核")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
public ResponseDto<String> performanceDetails(@RequestParam("performancesId") String performancesId, @RequestParam("status") int status, @RequestParam(value = "rejectTxt" , required = false) String rejectTxt) { public ResponseDto<String> performanceAudit(@RequestParam("performancesId") String performancesId, @RequestParam("status") int status, @RequestParam(value = "rejectTxt" , required = false) String rejectTxt) {
boolean result = performancesAdminService.performanceAudit(performancesId, status, rejectTxt); boolean result = performancesAdminService.performanceAudit(performancesId, status, rejectTxt);
if (result) { if (result) {
return ResponseDto.success("审核完成"); return ResponseDto.success("审核完成");
...@@ -98,7 +98,7 @@ public class KylinPerformancesAdminController { ...@@ -98,7 +98,7 @@ public class KylinPerformancesAdminController {
@GetMapping(value = "roadShow/relation") @GetMapping(value = "roadShow/relation")
@ApiOperation(value = "修改演出巡演关联") @ApiOperation(value = "修改演出巡演关联")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
public ResponseDto<String> getListByStatus(@RequestParam("performanceId") String performanceId, @RequestParam("roadShowId") String roadShowId) { public ResponseDto<String> changeRoadShowId(@RequestParam("performanceId") String performanceId, @RequestParam("roadShowId") String roadShowId) {
boolean result = performancesAdminService.changeRoadShowId(performanceId, roadShowId); boolean result = performancesAdminService.changeRoadShowId(performanceId, roadShowId);
if (result) { if (result) {
return ResponseDto.success("操作成功"); return ResponseDto.success("操作成功");
......
...@@ -36,7 +36,7 @@ public class KylinRoadShowsAdminController { ...@@ -36,7 +36,7 @@ public class KylinRoadShowsAdminController {
@GetMapping(value = "list") @GetMapping(value = "list")
@ApiOperation(value = "获取列表") @ApiOperation(value = "获取列表")
@ApiResponse(response = RoadShowAdminListDao.class, code = 200, message = "接口返回对象参数") @ApiResponse(response = RoadShowAdminListDao.class, code = 200, message = "接口返回对象参数")
public ResponseDto<PageInfo<RoadShowAdminListDao>> performanceDetails(@RequestParam(value = "title",required = false) String title, public ResponseDto<PageInfo<RoadShowAdminListDao>> listRoadShow(@RequestParam(value = "title",required = false) String title,
@RequestParam(value = "page") int page, @RequestParam(value = "page") int page,
@RequestParam(value = "size") int size) { @RequestParam(value = "size") int size) {
PageInfo<RoadShowAdminListDao> result = null; PageInfo<RoadShowAdminListDao> result = null;
......
...@@ -30,7 +30,7 @@ public class KylinTicketTimesPartnerController { ...@@ -30,7 +30,7 @@ public class KylinTicketTimesPartnerController {
@PostMapping(value = "") @PostMapping(value = "")
@ApiOperation(value = "创建场次") @ApiOperation(value = "创建场次")
@ApiResponse(response = TicketTimesPartnerVo.class, code = 200, message = "接口返回对象参数") @ApiResponse(response = TicketTimesPartnerVo.class, code = 200, message = "接口返回对象参数")
public ResponseDto<TicketTimesPartnerVo> createTimes(@RequestBody CreateTicketTimesParam createTicketTimesParam) { public ResponseDto<TicketTimesPartnerVo> createTimesSummary(@RequestBody CreateTicketTimesParam createTicketTimesParam) {
TicketTimesPartnerVo result = null; TicketTimesPartnerVo result = null;
result = ticketTimesPartnerService.createTimesSummary(createTicketTimesParam); result = ticketTimesPartnerService.createTimesSummary(createTicketTimesParam);
if (null == result) { if (null == result) {
...@@ -55,7 +55,7 @@ public class KylinTicketTimesPartnerController { ...@@ -55,7 +55,7 @@ public class KylinTicketTimesPartnerController {
@PutMapping(value = "") @PutMapping(value = "")
@ApiOperation(value = "修改场次") @ApiOperation(value = "修改场次")
@ApiResponse(response = TicketTimesPartnerVo.class, code = 200, message = "接口返回对象参数") @ApiResponse(response = TicketTimesPartnerVo.class, code = 200, message = "接口返回对象参数")
public ResponseDto<TicketTimesPartnerVo> deleteTimes(@RequestBody CreateTicketTimesParam createTicketTimesParam) { public ResponseDto<TicketTimesPartnerVo> changeTimes(@RequestBody CreateTicketTimesParam createTicketTimesParam) {
TicketTimesPartnerVo result = null; TicketTimesPartnerVo result = null;
result = ticketTimesPartnerService.changeTimes(createTicketTimesParam); result = ticketTimesPartnerService.changeTimes(createTicketTimesParam);
if (null == result) { if (null == result) {
......
...@@ -30,7 +30,7 @@ public class KylinTicketsPartnerController { ...@@ -30,7 +30,7 @@ public class KylinTicketsPartnerController {
@PostMapping(value = "") @PostMapping(value = "")
@ApiOperation(value = "创建票务") @ApiOperation(value = "创建票务")
@ApiResponse(response = TicketPartnerVo.class, code = 200, message = "接口返回对象参数") @ApiResponse(response = TicketPartnerVo.class, code = 200, message = "接口返回对象参数")
public ResponseDto<TicketPartnerVo> createTicket(@RequestBody TicketCreateParam ticketCreateParam) { public ResponseDto<TicketPartnerVo> createTicketSummary(@RequestBody TicketCreateParam ticketCreateParam) {
TicketPartnerVo result = null; TicketPartnerVo result = null;
result = ticketsPartnerService.createTicketSummary(ticketCreateParam); result = ticketsPartnerService.createTicketSummary(ticketCreateParam);
if (null == result) { if (null == result) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment