程序信息对外接口

This commit is contained in:
xy
2024-09-19 14:25:17 +08:00
parent 46a9922313
commit f86f18817d
8 changed files with 102 additions and 10 deletions

View File

@@ -1,13 +1,14 @@
package com.njcn.csdevice.controller.equipment;
import com.njcn.access.pojo.po.CsSoftInfoPO;
import com.njcn.common.pojo.annotation.OperateInfo;
import com.njcn.common.pojo.enums.common.LogEnum;
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
import com.njcn.common.pojo.response.HttpResult;
import com.njcn.common.utils.HttpResultUtil;
import com.njcn.csdevice.mapper.CsSoftInfoMapper;
import com.njcn.csdevice.pojo.po.CsSoftInfoPO;
import com.njcn.csdevice.service.ICsSoftInfoService;
import com.njcn.web.controller.BaseController;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
@@ -15,10 +16,7 @@ import io.swagger.annotations.ApiOperation;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
/**
* <p>
@@ -37,6 +35,7 @@ import org.springframework.web.bind.annotation.RestController;
public class CsSoftInfoController extends BaseController {
private final CsSoftInfoMapper csSoftInfoMapper;
private final ICsSoftInfoService csSoftInfoService;
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/findSoftInfo")
@@ -48,5 +47,26 @@ public class CsSoftInfoController extends BaseController {
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, po, methodDescribe);
}
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/saveSoftInfo")
@ApiOperation("保存程序软件信息")
@ApiImplicitParam(name = "id", value = "id", required = true)
public HttpResult<String> saveSoftInfo(@RequestBody CsSoftInfoPO po){
String methodDescribe = getMethodDescribe("saveSoftInfo");
csSoftInfoService.save(po);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
}
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/removeSoftInfo")
@ApiOperation("删除程序软件信息")
@ApiImplicitParam(name = "id", value = "id", required = true)
public HttpResult<String> removeSoftInfo(@RequestParam String id){
String methodDescribe = getMethodDescribe("removeSoftInfo");
csSoftInfoService.removeById(id);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
}
}