问题修改

This commit is contained in:
cwchen 2025-01-24 14:34:48 +08:00
parent 01b5fa5b37
commit 077fb4d512
1 changed files with 7 additions and 0 deletions

View File

@ -119,6 +119,13 @@ public class PlanApplicationController {
return pageInfo;
}
@PostMapping("getPlanDetailsList2")
@DecryptAndVerify(decryptedClass = PlanDataDetailBean.class)
public ServerResponse getPlanDetailsList2(EncryptedReq<PlanDataDetailBean> dto) {
List<PlanDataDetailBean> list = service.getPlanDetailsList(dto.getData());;
return ServerResponse.createSuccess(list);
}
@PostMapping("export")
public void export(HttpServletRequest request, HttpServletResponse response,PlanApplyBean o) {
try {