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

Commit be575ef7 authored by 胡佳晨's avatar 胡佳晨

修改退款

parent 17d68a41
......@@ -674,7 +674,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
ObjectUtil.cloneBasicDBObject().append("$set", mongoConverter.convertToMongoType(map))
);
LocalDateTime strTime = orderTicketData.getChangeDate();
LocalDateTime strTime = LocalDateTime.now();
dataUtils.delOrderTicketRedis(orderTickets.getOrderTicketsId());
LinkedList<String> sqls = ObjectUtil.cloneLinkedListStr();
......@@ -764,7 +764,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
LinkedList<Object[]> sqlsDataC = ObjectUtil.cloneLinkedListObj();
LinkedList<Object[]> sqlsDataD = ObjectUtil.cloneLinkedListObj();
LocalDateTime strTime = orderTicketData.getChangeDate();
LocalDateTime strTime = LocalDateTime.now();
KylinOrderTickets orderTickets = KylinOrderTickets.getNew();
KylinOrderTicketStatus orderTicketStatus = KylinOrderTicketStatus.getNew();
......
......@@ -44,10 +44,10 @@ public class SweetStageController {
@PostMapping("add")
@ApiOperation("添加舞台")
@ApiImplicitParams({
@ApiImplicitParam(type = "query", dataType = "String", name = "name", value = "舞台名", required = true),
@ApiImplicitParam(type = "query", dataType = "String", name = "title", value = "舞台名", required = true),
})
public ResponseDto<Boolean> add(@RequestParam() String name) {
return sweetStageService.add(name);
public ResponseDto<Boolean> add(@RequestParam() String title) {
return sweetStageService.add(title);
}
@GetMapping("detail")
......@@ -63,10 +63,10 @@ public class SweetStageController {
@ApiOperation("修改舞台")
@ApiImplicitParams({
@ApiImplicitParam(type = "query", dataType = "String", name = "stageId", value = "舞台Id", required = true),
@ApiImplicitParam(type = "query", dataType = "String", name = "name", value = "舞台名", required = true),
@ApiImplicitParam(type = "query", dataType = "String", name = "title", value = "舞台名", required = true),
})
public ResponseDto<Boolean> change(@RequestParam() String stageId,
@RequestParam() String name) {
return sweetStageService.change(name, stageId);
@RequestParam() String title) {
return sweetStageService.change(title, stageId);
}
}
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