提交代码,设备权限分享

This commit is contained in:
huangzj
2023-06-29 09:51:20 +08:00
parent ac46544730
commit 29042bf8ee
5 changed files with 38 additions and 6 deletions

View File

@@ -43,6 +43,17 @@ public class CsTouristDataPOController extends BaseController {
Boolean flag = csTouristDataPOService.add(csTouristDataParms);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, flag, methodDescribe);
}
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/remove")
@ApiOperation("移除游客数据")
@ApiImplicitParam(name = "csTouristDataParms", value = "新增工程参数", required = true)
public HttpResult<Boolean> remove(@Validated @RequestBody List<CsTouristDataParm> csTouristDataParms){
String methodDescribe = getMethodDescribe("remove");
Boolean flag = csTouristDataPOService.remove(csTouristDataParms);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, flag, methodDescribe);
}
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/queryAll")
@ApiOperation("查询游客数据")