|
@@ -29,76 +29,76 @@ import java.util.*;
|
|
|
@Tag(name = "旅游订单管理接口")
|
|
|
@Slf4j
|
|
|
@RestController
|
|
|
-@RequestMapping("/admin/app/tourOder")
|
|
|
-public class TourOderController {
|
|
|
+@RequestMapping("/admin/app/tourOrder")
|
|
|
+public class TourOrderController {
|
|
|
|
|
|
@Autowired
|
|
|
- private TourOderService tourOderService;
|
|
|
+ private TourOrderService tourOrderService;
|
|
|
|
|
|
/**
|
|
|
* 新增旅游订单数据。
|
|
|
*
|
|
|
- * @param tourOderDto 新增对象。
|
|
|
+ * @param tourOrderDto 新增对象。
|
|
|
* @return 应答结果对象,包含新增对象主键Id。
|
|
|
*/
|
|
|
@ApiOperationSupport(ignoreParameters = {
|
|
|
- "tourOderDto.id",
|
|
|
- "tourOderDto.searchString",
|
|
|
- "tourOderDto.departureDateStart",
|
|
|
- "tourOderDto.departureDateEnd",
|
|
|
- "tourOderDto.endDateStart",
|
|
|
- "tourOderDto.endDateEnd"})
|
|
|
- @SaCheckPermission("tourOder.add")
|
|
|
+ "tourOrderDto.id",
|
|
|
+ "tourOrderDto.searchString",
|
|
|
+ "tourOrderDto.departureDateStart",
|
|
|
+ "tourOrderDto.departureDateEnd",
|
|
|
+ "tourOrderDto.endDateStart",
|
|
|
+ "tourOrderDto.endDateEnd"})
|
|
|
+ @SaCheckPermission("tourOrder.add")
|
|
|
@OperationLog(type = SysOperationLogType.ADD)
|
|
|
@PostMapping("/add")
|
|
|
- public ResponseResult<Long> add(@MyRequestBody TourOderDto tourOderDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(tourOderDto, false);
|
|
|
+ public ResponseResult<Long> add(@MyRequestBody TourOrderDto tourOrderDto) {
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(tourOrderDto, false);
|
|
|
if (errorMessage != null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
}
|
|
|
- TourOder tourOder = MyModelUtil.copyTo(tourOderDto, TourOder.class);
|
|
|
+ TourOrder tourOrder = MyModelUtil.copyTo(tourOrderDto, TourOrder.class);
|
|
|
// 验证关联Id的数据合法性
|
|
|
- CallResult callResult = tourOderService.verifyRelatedData(tourOder, null);
|
|
|
+ CallResult callResult = tourOrderService.verifyRelatedData(tourOrder, null);
|
|
|
if (!callResult.isSuccess()) {
|
|
|
return ResponseResult.errorFrom(callResult);
|
|
|
}
|
|
|
- tourOder = tourOderService.saveNew(tourOder);
|
|
|
- return ResponseResult.success(tourOder.getId());
|
|
|
+ tourOrder = tourOrderService.saveNew(tourOrder);
|
|
|
+ return ResponseResult.success(tourOrder.getId());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 更新旅游订单数据。
|
|
|
*
|
|
|
- * @param tourOderDto 更新对象。
|
|
|
+ * @param tourOrderDto 更新对象。
|
|
|
* @return 应答结果对象。
|
|
|
*/
|
|
|
@ApiOperationSupport(ignoreParameters = {
|
|
|
- "tourOderDto.searchString",
|
|
|
- "tourOderDto.departureDateStart",
|
|
|
- "tourOderDto.departureDateEnd",
|
|
|
- "tourOderDto.endDateStart",
|
|
|
- "tourOderDto.endDateEnd"})
|
|
|
- @SaCheckPermission("tourOder.update")
|
|
|
+ "tourOrderDto.searchString",
|
|
|
+ "tourOrderDto.departureDateStart",
|
|
|
+ "tourOrderDto.departureDateEnd",
|
|
|
+ "tourOrderDto.endDateStart",
|
|
|
+ "tourOrderDto.endDateEnd"})
|
|
|
+ @SaCheckPermission("tourOrder.update")
|
|
|
@OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
@PostMapping("/update")
|
|
|
- public ResponseResult<Void> update(@MyRequestBody TourOderDto tourOderDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(tourOderDto, true);
|
|
|
+ public ResponseResult<Void> update(@MyRequestBody TourOrderDto tourOrderDto) {
|
|
|
+ String errorMessage = MyCommonUtil.getModelValidationError(tourOrderDto, true);
|
|
|
if (errorMessage != null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
}
|
|
|
- TourOder tourOder = MyModelUtil.copyTo(tourOderDto, TourOder.class);
|
|
|
- TourOder originalTourOder = tourOderService.getById(tourOder.getId());
|
|
|
- if (originalTourOder == null) {
|
|
|
+ TourOrder tourOrder = MyModelUtil.copyTo(tourOrderDto, TourOrder.class);
|
|
|
+ TourOrder originalTourOrder = tourOrderService.getById(tourOrder.getId());
|
|
|
+ if (originalTourOrder == null) {
|
|
|
// NOTE: 修改下面方括号中的话述
|
|
|
errorMessage = "数据验证失败,当前 [数据] 并不存在,请刷新后重试!";
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
}
|
|
|
// 验证关联Id的数据合法性
|
|
|
- CallResult callResult = tourOderService.verifyRelatedData(tourOder, originalTourOder);
|
|
|
+ CallResult callResult = tourOrderService.verifyRelatedData(tourOrder, originalTourOrder);
|
|
|
if (!callResult.isSuccess()) {
|
|
|
return ResponseResult.errorFrom(callResult);
|
|
|
}
|
|
|
- if (!tourOderService.update(tourOder, originalTourOder)) {
|
|
|
+ if (!tourOrderService.update(tourOrder, originalTourOrder)) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
return ResponseResult.success();
|
|
@@ -110,7 +110,7 @@ public class TourOderController {
|
|
|
* @param id 删除对象主键Id。
|
|
|
* @return 应答结果对象。
|
|
|
*/
|
|
|
- @SaCheckPermission("tourOder.delete")
|
|
|
+ @SaCheckPermission("tourOrder.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE)
|
|
|
@PostMapping("/delete")
|
|
|
public ResponseResult<Void> delete(@MyRequestBody Long id) {
|
|
@@ -126,7 +126,7 @@ public class TourOderController {
|
|
|
* @param idList 待删除对象的主键Id列表。
|
|
|
* @return 应答结果对象。
|
|
|
*/
|
|
|
- @SaCheckPermission("tourOder.delete")
|
|
|
+ @SaCheckPermission("tourOrder.delete")
|
|
|
@OperationLog(type = SysOperationLogType.DELETE_BATCH)
|
|
|
@PostMapping("/deleteBatch")
|
|
|
public ResponseResult<Void> deleteBatch(@MyRequestBody List<Long> idList) {
|
|
@@ -145,24 +145,24 @@ public class TourOderController {
|
|
|
/**
|
|
|
* 列出符合过滤条件的旅游订单列表。
|
|
|
*
|
|
|
- * @param tourOderDtoFilter 过滤对象。
|
|
|
+ * @param tourOrderDtoFilter 过滤对象。
|
|
|
* @param orderParam 排序参数。
|
|
|
* @param pageParam 分页参数。
|
|
|
* @return 应答结果对象,包含查询结果集。
|
|
|
*/
|
|
|
- @SaCheckPermission("tourOder.view")
|
|
|
+ @SaCheckPermission("tourOrder.view")
|
|
|
@PostMapping("/list")
|
|
|
- public ResponseResult<MyPageData<TourOderVo>> list(
|
|
|
- @MyRequestBody TourOderDto tourOderDtoFilter,
|
|
|
+ public ResponseResult<MyPageData<TourOrderVo>> list(
|
|
|
+ @MyRequestBody TourOrderDto tourOrderDtoFilter,
|
|
|
@MyRequestBody MyOrderParam orderParam,
|
|
|
@MyRequestBody MyPageParam pageParam) {
|
|
|
if (pageParam != null) {
|
|
|
PageMethod.startPage(pageParam.getPageNum(), pageParam.getPageSize(), pageParam.getCount());
|
|
|
}
|
|
|
- TourOder tourOderFilter = MyModelUtil.copyTo(tourOderDtoFilter, TourOder.class);
|
|
|
- String orderBy = MyOrderParam.buildOrderBy(orderParam, TourOder.class);
|
|
|
- List<TourOder> tourOderList = tourOderService.getTourOderListWithRelation(tourOderFilter, orderBy);
|
|
|
- return ResponseResult.success(MyPageUtil.makeResponseData(tourOderList, TourOderVo.class));
|
|
|
+ TourOrder tourOrderFilter = MyModelUtil.copyTo(tourOrderDtoFilter, TourOrder.class);
|
|
|
+ String orderBy = MyOrderParam.buildOrderBy(orderParam, TourOrder.class);
|
|
|
+ List<TourOrder> tourOrderList = tourOrderService.getTourOrderListWithRelation(tourOrderFilter, orderBy);
|
|
|
+ return ResponseResult.success(MyPageUtil.makeResponseData(tourOrderList, TourOrderVo.class));
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -171,27 +171,27 @@ public class TourOderController {
|
|
|
* @param id 指定对象主键Id。
|
|
|
* @return 应答结果对象,包含对象详情。
|
|
|
*/
|
|
|
- @SaCheckPermission("tourOder.view")
|
|
|
+ @SaCheckPermission("tourOrder.view")
|
|
|
@GetMapping("/view")
|
|
|
- public ResponseResult<TourOderVo> view(@RequestParam Long id) {
|
|
|
- TourOder tourOder = tourOderService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
- if (tourOder == null) {
|
|
|
+ public ResponseResult<TourOrderVo> view(@RequestParam Long id) {
|
|
|
+ TourOrder tourOrder = tourOrderService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
+ if (tourOrder == null) {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
}
|
|
|
- TourOderVo tourOderVo = MyModelUtil.copyTo(tourOder, TourOderVo.class);
|
|
|
- return ResponseResult.success(tourOderVo);
|
|
|
+ TourOrderVo tourOrderVo = MyModelUtil.copyTo(tourOrder, TourOrderVo.class);
|
|
|
+ return ResponseResult.success(tourOrderVo);
|
|
|
}
|
|
|
|
|
|
private ResponseResult<Void> doDelete(Long id) {
|
|
|
String errorMessage;
|
|
|
// 验证关联Id的数据合法性
|
|
|
- TourOder originalTourOder = tourOderService.getById(id);
|
|
|
- if (originalTourOder == null) {
|
|
|
+ TourOrder originalTourOrder = tourOrderService.getById(id);
|
|
|
+ if (originalTourOrder == null) {
|
|
|
// NOTE: 修改下面方括号中的话述
|
|
|
errorMessage = "数据验证失败,当前 [对象] 并不存在,请刷新后重试!";
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
}
|
|
|
- if (!tourOderService.remove(id)) {
|
|
|
+ if (!tourOrderService.remove(id)) {
|
|
|
errorMessage = "数据操作失败,删除的对象不存在,请刷新后重试!";
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
}
|