From d1e3a87aad6f737394b33852d9496d673472ddbe Mon Sep 17 00:00:00 2001
From: yuxc <653031404@qq.com>
Date: 星期二, 16 五月 2023 18:19:17 +0800
Subject: [PATCH] 主要完成修改Class统一命名,与老平台命名一致,删除多余VOClass等。

---
 Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodePhaseAttrController.java |  200 ++++++++++++++++++++++++++-----------------------
 1 files changed, 107 insertions(+), 93 deletions(-)

diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodePhaseAttrController.java b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodePhaseAttrController.java
index 2aaebcd..4389e71 100644
--- a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodePhaseAttrController.java
+++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/CodePhaseAttrController.java
@@ -1,115 +1,129 @@
+/*
+ *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
+ *
+ *  Redistribution and use in source and binary forms, with or without
+ *  modification, are permitted provided that the following conditions are met:
+ *
+ *  Redistributions of source code must retain the above copyright notice,
+ *  this list of conditions and the following disclaimer.
+ *  Redistributions in binary form must reproduce the above copyright
+ *  notice, this list of conditions and the following disclaimer in the
+ *  documentation and/or other materials provided with the distribution.
+ *  Neither the name of the dreamlu.net developer nor the names of its
+ *  contributors may be used to endorse or promote products derived from
+ *  this software without specific prior written permission.
+ *  Author: Chill 搴勯獮 (smallchill@163.com)
+ */
 package com.vci.ubcs.code.controller;
 
-
-import com.vci.ubcs.code.service.CodePhaseAttrServiceI;
-import com.vci.starter.web.pagemodel.BaseQueryObject;
-import com.vci.starter.web.pagemodel.BaseResult;
-import com.vci.starter.web.pagemodel.DataGrid;
-import com.vci.starter.web.util.VciBaseUtil;
-import com.vci.ubcs.code.dto.CodePhaseAttrDTO;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.toolkit.SqlHelper;
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
+import com.vci.ubcs.code.entity.CodePhaseAttr;
+import com.vci.ubcs.code.mapper.CodePhaseAttrMapper;
+import com.vci.ubcs.code.service.ICodePhaseAttrService;
 import com.vci.ubcs.code.vo.pagemodel.CodePhaseAttrVO;
-import org.springframework.beans.factory.annotation.Autowired;
+import com.vci.ubcs.code.wrapper.CodePhaseAttrWrapper;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import lombok.AllArgsConstructor;
+import org.springblade.core.boot.ctrl.BladeController;
+import org.springblade.core.mp.support.Condition;
+import org.springblade.core.mp.support.Query;
+import org.springblade.core.tool.api.R;
+import org.springblade.core.tool.utils.Func;
 import org.springframework.web.bind.annotation.*;
 
-import java.util.Collection;
+import javax.validation.Valid;
 
 /**
- * 闃舵鐨勫睘鎬ф帶鍒跺櫒
+ * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鎺у埗鍣�
  *
- * @author weidy
- * @date 2022-01-24
+ * @author yuxc
+ * @since 2023-04-20
  */
 @RestController
+@AllArgsConstructor
 @RequestMapping("/codePhaseAttrController")
-public class CodePhaseAttrController {
-    /**
-    * 闃舵鐨勫睘鎬� 鏈嶅姟
-    */
-    @Autowired
-    private CodePhaseAttrServiceI codePhaseAttrService;
+@Api(value = "缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴��", tags = "缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�ф帴鍙�")
+public class CodePhaseAttrController extends BladeController {
 
-    /**
-     * 闃舵鐨勫睘鎬у垪琛�
-     * @param baseQueryObject 鍩虹鏌ヨ瀵硅薄锛屽寘鍚煡璇㈡潯浠讹紝鍒嗛〉锛屾帓搴忕瓑
-     * @return 闃舵鐨勫睘鎬ф樉绀哄璞″垪琛�
-     */
-    @GetMapping("/gridCodePhaseAttr")
-    public DataGrid<CodePhaseAttrVO> gridCodePhaseAttr(BaseQueryObject baseQueryObject){
-        if(baseQueryObject == null){
-            baseQueryObject = new BaseQueryObject();
-        }
-        return codePhaseAttrService.gridCodePhaseAttr(baseQueryObject.getConditionMap(),baseQueryObject.getPageHelper());
-    }
-    /**
-     * 澧炲姞 闃舵鐨勫睘鎬�
-     * @param codePhaseAttrDTO 闃舵鐨勫睘鎬ф暟鎹紶杈撳璞�
-     * @return 鎵ц缁撴灉锛宻uccess涓簍rue琛ㄧず鎴愬姛锛宮sg鏄け璐ョ殑鎻愮ず淇℃伅锛宱bj鏄坊鍔犲畬鎴愬悗鐨勬樉绀哄璞�
-     */
-    @PostMapping( "/addSave")
-    public BaseResult<CodePhaseAttrVO> addSave(@RequestBody CodePhaseAttrDTO codePhaseAttrDTO){
-         CodePhaseAttrVO codePhaseAttrVO = codePhaseAttrService.addSave(codePhaseAttrDTO);
-         return BaseResult.success(codePhaseAttrVO);
-    }
+	private final ICodePhaseAttrService CodePhaseattrService;
 
-    /**
-     * 淇敼 闃舵鐨勫睘鎬�
-     * @param codePhaseAttrDTO 闃舵鐨勫睘鎬ф暟鎹紶杈撳璞�
-     * @return 鎵ц缁撴灉锛宻uccess涓簍rue琛ㄧず鎴愬姛锛宮sg鏄け璐ョ殑鎻愮ず淇℃伅锛宱bj鏄坊鍔犲畬鎴愬悗鐨勬樉绀哄璞�
-     */
-    @PutMapping("/editSave")
-    public BaseResult<CodePhaseAttrVO> editSave(@RequestBody CodePhaseAttrDTO codePhaseAttrDTO){
-        CodePhaseAttrVO codePhaseAttrVO = codePhaseAttrService.editSave(codePhaseAttrDTO);
-        return BaseResult.success(codePhaseAttrVO);
-    }
+	private CodePhaseAttrMapper codePhaseAttrMapper;
 
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 璇︽儏
+	 */
+	@GetMapping("/detail")
+	@ApiOperationSupport(order = 1)
+	@ApiOperation(value = "璇︽儏", notes = "浼犲叆CodePhaseattr")
+	public R<CodePhaseAttrVO> detail(CodePhaseAttr codePhaseattr) {
+		CodePhaseAttr detail = CodePhaseattrService.getOne(Condition.getQueryWrapper(codePhaseattr));
+		return R.data(CodePhaseAttrWrapper.build().entityVO(detail));
+	}
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鍒嗛〉
+	 */
+	@GetMapping("/list")
+	@ApiOperationSupport(order = 2)
+	@ApiOperation(value = "鍒嗛〉", notes = "浼犲叆CodePhaseattr")
+	public R<IPage<CodePhaseAttrVO>> list(CodePhaseAttr codePhaseattr, Query query) {
+		IPage<CodePhaseAttr> pages = CodePhaseattrService.page(Condition.getPage(query), Condition.getQueryWrapper(codePhaseattr));
+		return R.data(CodePhaseAttrWrapper.build().pageVO(pages));
+	}
 
-    /**
-     * 鍒犻櫎闃舵鐨勫睘鎬�
-     * @param codePhaseAttrDTO 闃舵鐨勫睘鎬ф暟鎹紶杈撳璞★紝oid鍜宼s闇�瑕佷紶杈�
-     * @return 鍒犻櫎缁撴灉鍙嶉锛氾細success锛氭垚鍔燂紝fail锛氬け璐�
-     */
-    @DeleteMapping( "/deleteData")
-    public BaseResult delCodePhaseAttr( CodePhaseAttrDTO codePhaseAttrDTO) {
-        return codePhaseAttrService.deleteCodePhaseAttr(codePhaseAttrDTO);
-    }
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鑷畾涔夊垎椤�
+	 */
+	@GetMapping("/page")
+	@ApiOperationSupport(order = 3)
+	@ApiOperation(value = "鍒嗛〉", notes = "浼犲叆CodePhaseattr")
+	public R<IPage<CodePhaseAttrVO>> page(CodePhaseAttrVO CodePhaseattr, Query query) {
+		IPage<CodePhaseAttrVO> pages = CodePhaseattrService.selectCodePhaseattrPage(Condition.getPage(query), CodePhaseattr);
+		return R.data(pages);
+	}
 
-    /**
-    * 涓婚敭鑾峰彇闃舵鐨勫睘鎬�
-    * @param oid 涓婚敭
-    * @return 闃舵鐨勫睘鎬ф樉绀哄璞�
-    */
-    @GetMapping("/getObjectByOid")
-    public BaseResult<CodePhaseAttrVO> getObjectByOid(String oid){
-        CodePhaseAttrVO codePhaseAttrVO = codePhaseAttrService.getObjectByOid(oid);
-        return BaseResult.success(codePhaseAttrVO);
-    }
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鏂板
+	 */
+	@PostMapping("/save")
+	@ApiOperationSupport(order = 4)
+	@ApiOperation(value = "鏂板", notes = "浼犲叆CodePhaseattr")
+	public R save(@Valid @RequestBody CodePhaseAttr codePhaseattr) {
+		return R.status(CodePhaseattrService.save(codePhaseattr));
+	}
 
-    /**
-     * 涓婚敭鎵归噺鑾峰彇闃舵鐨勫睘鎬�
-     * @param oids 涓婚敭锛屽涓互閫楀彿鍒嗛殧锛屼絾鏄彈鎬ц兘褰卞搷锛屽缓璁竴娆℃煡璇笉瓒呰繃10000涓�
-     * @return 闃舵鐨勫睘鎬ф樉绀哄璞�
-     */
-    @GetMapping("/listDataByOids")
-    public BaseResult<CodePhaseAttrVO> listCodePhaseAttrByOids(String oids){
-        Collection<CodePhaseAttrVO> voCollection =  codePhaseAttrService.listCodePhaseAttrByOids(VciBaseUtil.str2List(oids));
-        BaseResult baseResult = BaseResult.success();
-        baseResult.setData(voCollection);
-        return  baseResult;
-    }
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 淇敼
+	 */
+	@PostMapping("/update")
+	@ApiOperationSupport(order = 5)
+	@ApiOperation(value = "淇敼", notes = "浼犲叆CodePhaseattr")
+	public R update(@Valid @RequestBody CodePhaseAttr codePhaseattr) {
+		return R.status(CodePhaseattrService.updateById(codePhaseattr));
+	}
 
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鏂板鎴栦慨鏀�
+	 */
+	@PostMapping("/submit")
+	@ApiOperationSupport(order = 6)
+	@ApiOperation(value = "鏂板鎴栦慨鏀�", notes = "浼犲叆CodePhaseattr")
+	public R submit(@Valid @RequestBody CodePhaseAttr codePhaseattr) {
+		return R.status(CodePhaseattrService.saveOrUpdate(codePhaseattr));
+	}
 
+	/**
+	 * 缂栫爜搴撳畾涔�-妯℃澘闃舵-灞炴�� 鍒犻櫎
+	 */
+	@PostMapping("/remove")
+	@ApiOperationSupport(order = 7)
+	@ApiOperation(value = "閫昏緫鍒犻櫎", notes = "浼犲叆ids")
+	public R remove(@ApiParam(value = "涓婚敭闆嗗悎", required = true) @RequestParam String ids) {
+		return R.status(SqlHelper.retBool(codePhaseAttrMapper.deleteBatchIds(Func.toLongList(ids))));
+	}
 
-    /**
-     * 鍙傜収闃舵鐨勫睘鎬у垪琛�
-     * @param baseQueryObject 鍩虹鏌ヨ瀵硅薄锛屽寘鍚煡璇㈡潯浠讹紝鍒嗛〉锛屾帓搴忕瓑
-     * @return 闃舵鐨勫睘鎬ф樉绀哄璞″垪琛紝鐢熸晥鐨勫唴瀹�
-     */
-    @GetMapping("/refDataGrid")
-    public DataGrid<CodePhaseAttrVO> refDataGridCodePhaseAttr(BaseQueryObject baseQueryObject){
-        if(baseQueryObject == null){
-            baseQueryObject = new BaseQueryObject();
-        }
-        return codePhaseAttrService.refDataGridCodePhaseAttr(baseQueryObject.getConditionMap(),baseQueryObject.getPageHelper());
-    }
 
 }

--
Gitblit v1.9.3