|
@@ -1,179 +0,0 @@
|
|
|
-package com.tourism.webadmin.back.controller;
|
|
|
-
|
|
|
-import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
-import com.tourism.common.log.annotation.OperationLog;
|
|
|
-import com.tourism.common.log.model.constant.SysOperationLogType;
|
|
|
-import com.github.pagehelper.page.PageMethod;
|
|
|
-import com.tourism.webadmin.back.vo.*;
|
|
|
-import com.tourism.webadmin.back.dto.*;
|
|
|
-import com.tourism.webadmin.back.model.*;
|
|
|
-import com.tourism.webadmin.back.service.*;
|
|
|
-import com.tourism.common.core.object.*;
|
|
|
-import com.tourism.common.core.util.*;
|
|
|
-import com.tourism.common.core.constant.*;
|
|
|
-import com.tourism.common.core.annotation.MyRequestBody;
|
|
|
-import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
-import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
-
|
|
|
-import java.util.*;
|
|
|
-
|
|
|
-/**
|
|
|
- * 拼图的当前人数表操作控制器类。
|
|
|
- *
|
|
|
- * @author 吃饭睡觉
|
|
|
- * @date 2024-09-06
|
|
|
- */
|
|
|
-@Tag(name = "拼图的当前人数表管理接口")
|
|
|
-@Slf4j
|
|
|
-@RestController
|
|
|
-@RequestMapping("/admin/app/tourProjectGroupPurchaseProgress")
|
|
|
-public class TourProjectGroupPurchaseProgressController {
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private TourProjectGroupPurchaseProgressService tourProjectGroupPurchaseProgressService;
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增拼图的当前人数表数据。
|
|
|
- *
|
|
|
- * @param tourProjectGroupPurchaseProgressDto 新增对象。
|
|
|
- * @return 应答结果对象,包含新增对象主键Id。
|
|
|
- */
|
|
|
- @ApiOperationSupport(ignoreParameters = {"tourProjectGroupPurchaseProgressDto.id"})
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.add")
|
|
|
- @OperationLog(type = SysOperationLogType.ADD)
|
|
|
- @PostMapping("/add")
|
|
|
- public ResponseResult<Long> add(@MyRequestBody TourProjectGroupPurchaseProgressDto tourProjectGroupPurchaseProgressDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(tourProjectGroupPurchaseProgressDto, false);
|
|
|
- if (errorMessage != null) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
- }
|
|
|
- TourProjectGroupPurchaseProgress tourProjectGroupPurchaseProgress = MyModelUtil.copyTo(tourProjectGroupPurchaseProgressDto, TourProjectGroupPurchaseProgress.class);
|
|
|
- tourProjectGroupPurchaseProgress = tourProjectGroupPurchaseProgressService.saveNew(tourProjectGroupPurchaseProgress);
|
|
|
- return ResponseResult.success(tourProjectGroupPurchaseProgress.getId());
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 更新拼图的当前人数表数据。
|
|
|
- *
|
|
|
- * @param tourProjectGroupPurchaseProgressDto 更新对象。
|
|
|
- * @return 应答结果对象。
|
|
|
- */
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.update")
|
|
|
- @OperationLog(type = SysOperationLogType.UPDATE)
|
|
|
- @PostMapping("/update")
|
|
|
- public ResponseResult<Void> update(@MyRequestBody TourProjectGroupPurchaseProgressDto tourProjectGroupPurchaseProgressDto) {
|
|
|
- String errorMessage = MyCommonUtil.getModelValidationError(tourProjectGroupPurchaseProgressDto, true);
|
|
|
- if (errorMessage != null) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, errorMessage);
|
|
|
- }
|
|
|
- TourProjectGroupPurchaseProgress tourProjectGroupPurchaseProgress = MyModelUtil.copyTo(tourProjectGroupPurchaseProgressDto, TourProjectGroupPurchaseProgress.class);
|
|
|
- TourProjectGroupPurchaseProgress originalTourProjectGroupPurchaseProgress = tourProjectGroupPurchaseProgressService.getById(tourProjectGroupPurchaseProgress.getId());
|
|
|
- if (originalTourProjectGroupPurchaseProgress == null) {
|
|
|
- // NOTE: 修改下面方括号中的话述
|
|
|
- errorMessage = "数据验证失败,当前 [数据] 并不存在,请刷新后重试!";
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
- }
|
|
|
- if (!tourProjectGroupPurchaseProgressService.update(tourProjectGroupPurchaseProgress, originalTourProjectGroupPurchaseProgress)) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
- }
|
|
|
- return ResponseResult.success();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 删除拼图的当前人数表数据。
|
|
|
- *
|
|
|
- * @param id 删除对象主键Id。
|
|
|
- * @return 应答结果对象。
|
|
|
- */
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.delete")
|
|
|
- @OperationLog(type = SysOperationLogType.DELETE)
|
|
|
- @PostMapping("/delete")
|
|
|
- public ResponseResult<Void> delete(@MyRequestBody Long id) {
|
|
|
- if (MyCommonUtil.existBlankArgument(id)) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
- }
|
|
|
- return this.doDelete(id);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 批量删除拼图的当前人数表数据。
|
|
|
- *
|
|
|
- * @param idList 待删除对象的主键Id列表。
|
|
|
- * @return 应答结果对象。
|
|
|
- */
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.delete")
|
|
|
- @OperationLog(type = SysOperationLogType.DELETE_BATCH)
|
|
|
- @PostMapping("/deleteBatch")
|
|
|
- public ResponseResult<Void> deleteBatch(@MyRequestBody List<Long> idList) {
|
|
|
- if (MyCommonUtil.existBlankArgument(idList)) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.ARGUMENT_NULL_EXIST);
|
|
|
- }
|
|
|
- for (Long id : idList) {
|
|
|
- ResponseResult<Void> responseResult = this.doDelete(id);
|
|
|
- if (!responseResult.isSuccess()) {
|
|
|
- return responseResult;
|
|
|
- }
|
|
|
- }
|
|
|
- return ResponseResult.success();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 列出符合过滤条件的拼图的当前人数表列表。
|
|
|
- *
|
|
|
- * @param tourProjectGroupPurchaseProgressDtoFilter 过滤对象。
|
|
|
- * @param orderParam 排序参数。
|
|
|
- * @param pageParam 分页参数。
|
|
|
- * @return 应答结果对象,包含查询结果集。
|
|
|
- */
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.view")
|
|
|
- @PostMapping("/list")
|
|
|
- public ResponseResult<MyPageData<TourProjectGroupPurchaseProgressVo>> list(
|
|
|
- @MyRequestBody TourProjectGroupPurchaseProgressDto tourProjectGroupPurchaseProgressDtoFilter,
|
|
|
- @MyRequestBody MyOrderParam orderParam,
|
|
|
- @MyRequestBody MyPageParam pageParam) {
|
|
|
- if (pageParam != null) {
|
|
|
- PageMethod.startPage(pageParam.getPageNum(), pageParam.getPageSize(), pageParam.getCount());
|
|
|
- }
|
|
|
- TourProjectGroupPurchaseProgress tourProjectGroupPurchaseProgressFilter = MyModelUtil.copyTo(tourProjectGroupPurchaseProgressDtoFilter, TourProjectGroupPurchaseProgress.class);
|
|
|
- String orderBy = MyOrderParam.buildOrderBy(orderParam, TourProjectGroupPurchaseProgress.class);
|
|
|
- List<TourProjectGroupPurchaseProgress> tourProjectGroupPurchaseProgressList =
|
|
|
- tourProjectGroupPurchaseProgressService.getTourProjectGroupPurchaseProgressListWithRelation(tourProjectGroupPurchaseProgressFilter, orderBy);
|
|
|
- return ResponseResult.success(MyPageUtil.makeResponseData(tourProjectGroupPurchaseProgressList, TourProjectGroupPurchaseProgressVo.class));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 查看指定拼图的当前人数表对象详情。
|
|
|
- *
|
|
|
- * @param id 指定对象主键Id。
|
|
|
- * @return 应答结果对象,包含对象详情。
|
|
|
- */
|
|
|
- @SaCheckPermission("tourProjectGroupPurchaseProgress.view")
|
|
|
- @GetMapping("/view")
|
|
|
- public ResponseResult<TourProjectGroupPurchaseProgressVo> view(@RequestParam Long id) {
|
|
|
- TourProjectGroupPurchaseProgress tourProjectGroupPurchaseProgress = tourProjectGroupPurchaseProgressService.getByIdWithRelation(id, MyRelationParam.full());
|
|
|
- if (tourProjectGroupPurchaseProgress == null) {
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST);
|
|
|
- }
|
|
|
- TourProjectGroupPurchaseProgressVo tourProjectGroupPurchaseProgressVo = MyModelUtil.copyTo(tourProjectGroupPurchaseProgress, TourProjectGroupPurchaseProgressVo.class);
|
|
|
- return ResponseResult.success(tourProjectGroupPurchaseProgressVo);
|
|
|
- }
|
|
|
-
|
|
|
- private ResponseResult<Void> doDelete(Long id) {
|
|
|
- String errorMessage;
|
|
|
- // 验证关联Id的数据合法性
|
|
|
- TourProjectGroupPurchaseProgress originalTourProjectGroupPurchaseProgress = tourProjectGroupPurchaseProgressService.getById(id);
|
|
|
- if (originalTourProjectGroupPurchaseProgress == null) {
|
|
|
- // NOTE: 修改下面方括号中的话述
|
|
|
- errorMessage = "数据验证失败,当前 [对象] 并不存在,请刷新后重试!";
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
- }
|
|
|
- if (!tourProjectGroupPurchaseProgressService.remove(id)) {
|
|
|
- errorMessage = "数据操作失败,删除的对象不存在,请刷新后重试!";
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_NOT_EXIST, errorMessage);
|
|
|
- }
|
|
|
- return ResponseResult.success();
|
|
|
- }
|
|
|
-}
|