提交代码,设备权限分享
This commit is contained in:
@@ -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("查询游客数据")
|
||||
|
||||
Reference in New Issue
Block a user