|
|
@@ -0,0 +1,69 @@
|
|
|
+package com.zksy.controller.property;
|
|
|
+
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
+import com.zksy.property.domain.AAssetManagement;
|
|
|
+import com.zksy.property.domain.AContractInfo;
|
|
|
+import com.zksy.property.service.AAssetManagementService;
|
|
|
+import com.zksy.property.service.AContractInfoService;
|
|
|
+import com.zksy.utils.AjaxResult;
|
|
|
+import com.zksy.utils.ExcelExportUtil;
|
|
|
+import com.zksy.utils.ExcelImportUtil;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import java.time.LocalDate;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.util.Arrays;
|
|
|
+
|
|
|
+import static com.zksy.utils.util.generateAssetNumber;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author Administrator
|
|
|
+ * @version 1.0
|
|
|
+ * @project enterprise-assets-service
|
|
|
+ * @description 合同信息控制层
|
|
|
+ * @date 2025/6/24 14:33:13
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/acontractInfo")
|
|
|
+@Api(tags = "合同信息",description = "合同信息desc")
|
|
|
+public class AContractInfoController {
|
|
|
+ @Autowired
|
|
|
+ private AContractInfoService service;
|
|
|
+ @GetMapping("/findByPage")
|
|
|
+ @ApiOperation(value = "合同信息查询分页")
|
|
|
+ public AjaxResult findByPage(long pageNum, long pageSize, String contractNumber,String contractDate,String contractStatus){
|
|
|
+ return AjaxResult.success(service.findByPage(pageNum, pageSize, contractNumber,contractDate,contractStatus));
|
|
|
+ }
|
|
|
+ @GetMapping("/getAContractInfoList")
|
|
|
+ @ApiOperation(value = "合同信息查询")
|
|
|
+ public AjaxResult getAContractInfoList(String contractNumber,String contractDate,String contractStatus){
|
|
|
+ return AjaxResult.success(service.getAContractInfoList(contractNumber,contractDate,contractStatus));
|
|
|
+ }
|
|
|
+ @GetMapping("/getById/{id}")
|
|
|
+ @ApiOperation(value = "根据Id查询合同信息")
|
|
|
+ public AjaxResult getById(@PathVariable String id){
|
|
|
+ return AjaxResult.success(service.getById(id));
|
|
|
+ }
|
|
|
+ @PostMapping("/save")
|
|
|
+ @ApiOperation(value = "合同信息保存")
|
|
|
+ public AjaxResult save(@RequestBody AContractInfo entity) {
|
|
|
+ return service.save(entity) ? AjaxResult.success(entity) : AjaxResult.error("保存失败");
|
|
|
+ }
|
|
|
+ @PostMapping("/update")
|
|
|
+ @ApiOperation(value = "合同信息修改")
|
|
|
+ public AjaxResult update(@RequestBody AContractInfo entity) {
|
|
|
+ entity.setUpdateTime(LocalDateTime.now());
|
|
|
+ return service.updateById(entity) ? AjaxResult.success(entity) : AjaxResult.error("修改失败");
|
|
|
+ }
|
|
|
+ @PostMapping("/deleteBatch")
|
|
|
+ @ApiOperation(value = "合同信息删除")
|
|
|
+ public AjaxResult delete(@RequestBody String[] ids) {
|
|
|
+ return service.removeBatchByIds(Arrays.asList(ids)) ? AjaxResult.success("删除成功") : AjaxResult.error("删除失败");
|
|
|
+ }
|
|
|
+
|
|
|
+}
|