|
|
|
@ -35,15 +35,15 @@ public class EntrustAlterApplyController { |
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "查询所有申请修改委托消息分页接口", notes = "查询所有申请修改委托消息分页接口") |
|
|
|
|
@PostMapping("/page") |
|
|
|
|
@PreAuthorize("@pms.hasPermission('EntrustAlterApplyQuery')") // 委托申请修改消息查询权限
|
|
|
|
|
public R page(@RequestBody EntrustAlterApplyQuery query) { |
|
|
|
|
// @PreAuthorize("@pms.hasPermission('EntrustAlterApplyQuery')") // 委托申请修改消息查询权限
|
|
|
|
|
public R<IPage<EntrustAlterApplyVO>> page(@RequestBody EntrustAlterApplyQuery query) { |
|
|
|
|
IPage<EntrustAlterApplyVO> page = entrustAlterApplyService.voPage(query); |
|
|
|
|
return R.ok(page); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "保存或提交委托申请修改消息", notes = "保存委托申请修改消息") |
|
|
|
|
@PostMapping("/save") |
|
|
|
|
@PreAuthorize("@pms.hasPermission('EntrustAlterApplySubmit')") // 委托申请修改消息保存提交权限
|
|
|
|
|
// @PreAuthorize("@pms.hasPermission('EntrustAlterApplySubmit')") // 委托申请修改消息保存提交权限
|
|
|
|
|
public R save(@RequestBody @Valid EntrustAlterApplyDTO dto) { |
|
|
|
|
EntrustAlterApplyVO vo = null; |
|
|
|
|
try { |
|
|
|
@ -57,7 +57,7 @@ public class EntrustAlterApplyController { |
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "修改委托申请修改消息", notes = "修改委托申请修改消息") |
|
|
|
|
@PutMapping("/update") |
|
|
|
|
@PreAuthorize("@pms.hasPermission('EntrustAlterApplyEdit')") // 委托申请修改消息修改权限
|
|
|
|
|
// @PreAuthorize("@pms.hasPermission('EntrustAlterApplyEdit')") // 委托申请修改消息修改权限
|
|
|
|
|
public R update(@RequestBody @Valid EntrustAlterApplyDTO dto) { |
|
|
|
|
Boolean success = null; |
|
|
|
|
try { |
|
|
|
@ -71,7 +71,7 @@ public class EntrustAlterApplyController { |
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "审核提交委托申请修改消息", notes = "审核提交委托申请修改消息") |
|
|
|
|
@PutMapping("/approve") |
|
|
|
|
@PreAuthorize("@pms.hasPermission('EntrustAlterApplyApprove')") // 委托申请修改消息审核权限
|
|
|
|
|
// @PreAuthorize("@pms.hasPermission('EntrustAlterApplyApprove')") // 委托申请修改消息审核权限
|
|
|
|
|
public R approve(@RequestBody @Valid EntrustAlterApplyApproveDTO approveDTO) { |
|
|
|
|
Boolean success = null; |
|
|
|
|
try { |
|
|
|
@ -85,7 +85,7 @@ public class EntrustAlterApplyController { |
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "删除委托申请修改消息", notes = "删除委托申请修改消息, 只能删除为提交状态的消息") |
|
|
|
|
@PostMapping("/delete") |
|
|
|
|
@PreAuthorize("@pms.hasPermission('EntrustAlterApplyDelete')") // 委托申请修改消息删除权限
|
|
|
|
|
// @PreAuthorize("@pms.hasPermission('EntrustAlterApplyDelete')") // 委托申请修改消息删除权限
|
|
|
|
|
public R delete(@RequestBody List<String> ids) { |
|
|
|
|
Boolean success = null; |
|
|
|
|
try { |
|
|
|
|