feat:预炸

This commit is contained in:
苏竹红
2025-06-23 10:41:33 +08:00
parent 9147a67b07
commit 1ca98f41ce
11 changed files with 92 additions and 14 deletions

View File

@@ -69,9 +69,15 @@ public class MiniPreFryQualificationApplyController {
@ApiOperation("获取门店最高优先级申请类型")
@PostMapping("/getMinApplyType")
@GetMapping("/getMinApplyType")
public ResponseResult<Integer> getMinApplyType(@RequestParam(required = true, value = "storeCode") String storeCode) {
return ResponseResult.success(preFryQualificationApplyService.getMinApplyType(storeCode));
}
@ApiOperation("根据门店编码获取申请类型审批状态")
@GetMapping("/getListByStoreCode")
public ResponseResult<List<PreFryQualificationApplyDTO>> getListByStoreCode(@RequestParam(required = true, value = "storeCode") String storeCode) {
return ResponseResult.success(preFryQualificationApplyService.getListByStoreCode(storeCode));
}
}