删除查看任务进度权限

This commit is contained in:
mx 2024-10-11 16:22:41 +08:00
parent 75d244523b
commit 1b7f169672

View File

@ -194,7 +194,7 @@ public class PsContractInfoController extends BaseController {
*/ */
@RepeatSubmit() @RepeatSubmit()
@Log(title = "免费派单") @Log(title = "免费派单")
@SaCheckPermission("business:task:list") // @SaCheckPermission("business:task:list")
@GetMapping("/freeWork") @GetMapping("/freeWork")
public R<Void> freeWork(@NotNull String serviceCompanyId, @NotNull String businessType,@NotNull String businessProject) { public R<Void> freeWork(@NotNull String serviceCompanyId, @NotNull String businessType,@NotNull String businessProject) {
psContractInfoService.freeWork(serviceCompanyId, businessType, businessProject); psContractInfoService.freeWork(serviceCompanyId, businessType, businessProject);
@ -207,7 +207,7 @@ public class PsContractInfoController extends BaseController {
*/ */
@RepeatSubmit() @RepeatSubmit()
@Log(title = "根据合同编码查询服务进度") @Log(title = "根据合同编码查询服务进度")
@SaCheckPermission("business:task:list") // @SaCheckPermission("business:task:list")
@GetMapping("/queryScheduleByCode") @GetMapping("/queryScheduleByCode")
public R<ServiceScheduleVo> queryScheduleByCode(@NotNull String contractCode, @NotNull Long serviceCompanyId) { public R<ServiceScheduleVo> queryScheduleByCode(@NotNull String contractCode, @NotNull Long serviceCompanyId) {
return R.ok(psContractInfoService.queryScheduleByCode(contractCode, serviceCompanyId)); return R.ok(psContractInfoService.queryScheduleByCode(contractCode, serviceCompanyId));