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

Commit bdd63d40 authored by jiangxiulong's avatar jiangxiulong

Merge remote-tracking branch 'origin/dev' into dev

parents 58e2fd05 daa1fcc1
...@@ -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("操作成功");
......
...@@ -17,6 +17,9 @@ import io.swagger.annotations.ApiResponse; ...@@ -17,6 +17,9 @@ import io.swagger.annotations.ApiResponse;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import java.util.HashMap;
import java.util.Map;
/** /**
* <p> * <p>
* 巡演 前端控制器 * 巡演 前端控制器
...@@ -36,7 +39,7 @@ public class KylinRoadShowsAdminController { ...@@ -36,7 +39,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;
...@@ -51,10 +54,12 @@ public class KylinRoadShowsAdminController { ...@@ -51,10 +54,12 @@ public class KylinRoadShowsAdminController {
@PostMapping(value = "") @PostMapping(value = "")
@ApiOperation(value = "创建") @ApiOperation(value = "创建")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
public ResponseDto<String> createRoadShow(@RequestBody CreateRoadShowParam createRoadShowParam) { public ResponseDto<Map<String,String>> createRoadShow(@RequestBody CreateRoadShowParam createRoadShowParam) {
String result = roadShowsService.createRoadShow(createRoadShowParam); String result = roadShowsService.createRoadShow(createRoadShowParam);
if (!result.isEmpty()) { if (!result.isEmpty()) {
return ResponseDto.success(result); Map<String,String> map = new HashMap<>();
map.put("roadShowId",result);
return ResponseDto.success(map);
} else { } else {
return ResponseDto.failure("创建失败"); return ResponseDto.failure("创建失败");
} }
......
...@@ -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) {
......
...@@ -12,6 +12,9 @@ import io.swagger.annotations.ApiResponse; ...@@ -12,6 +12,9 @@ import io.swagger.annotations.ApiResponse;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import java.util.HashMap;
import java.util.Map;
@Api(tags = "第三方-演出") @Api(tags = "第三方-演出")
@RestController @RestController
@RequestMapping("partner/performance") @RequestMapping("partner/performance")
...@@ -34,14 +37,16 @@ public class PerformancePartnerController { ...@@ -34,14 +37,16 @@ public class PerformancePartnerController {
} }
@PostMapping(value = "copy") @PostMapping(value = "copy")
@ApiOperation(value = "演出列表") @ApiOperation(value = "复制演出")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
public ResponseDto<String> copyPerformance(@RequestParam("performancesId") String performancesId) { public ResponseDto<Map<String,String>> copyPerformance(@RequestParam("performancesId") String performancesId) {
String result = performancesPartnerService.copyPerformance(performancesId); String result = performancesPartnerService.copyPerformance(performancesId);
if (null == result) { if (null == result) {
return ResponseDto.failure("复制失败"); return ResponseDto.failure("复制失败");
} else { } else {
return ResponseDto.success(result); Map<String,String> map = new HashMap<>();
map.put("performancesId",result);
return ResponseDto.success(map);
} }
} }
...@@ -61,12 +66,14 @@ public class PerformancePartnerController { ...@@ -61,12 +66,14 @@ public class PerformancePartnerController {
@PostMapping(value = "step1") @PostMapping(value = "step1")
@ApiOperation(value = "操作演出第一步") @ApiOperation(value = "操作演出第一步")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
public ResponseDto<String> Step1(@RequestBody PerformanceStep1Param performanceStep1Param) { public ResponseDto<Map<String,String>> Step1(@RequestBody PerformanceStep1Param performanceStep1Param) {
String result = performancesPartnerService.step1(performanceStep1Param); String result = performancesPartnerService.step1(performanceStep1Param);
if (result.isEmpty()) { if (result.isEmpty()) {
return ResponseDto.failure("操作失败"); return ResponseDto.failure("操作失败");
} else { } else {
return ResponseDto.success(result); Map<String,String> map = new HashMap<>();
map.put("performancesId",result);
return ResponseDto.success(map);
} }
} }
......
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