This commit is contained in:
cjw 2024-04-30 15:25:59 +08:00
parent 676a4e8693
commit 55f882ecb5
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public class ScalePublishController extends BaseController {
* @param batchNo 主键
*/
@SaCheckPermission("scale:publish:delete")
@GetMapping("/{batchNo}")
@DeleteMapping("/{batchNo}")
public R<Void> delete(@NotNull(message = "主键不能为空") @PathVariable Long batchNo) {
return toAjax(sysScalePublishService.deleteById(batchNo));
}