问题修改
This commit is contained in:
parent
01b5fa5b37
commit
077fb4d512
|
|
@ -119,6 +119,13 @@ public class PlanApplicationController {
|
||||||
return pageInfo;
|
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")
|
@PostMapping("export")
|
||||||
public void export(HttpServletRequest request, HttpServletResponse response,PlanApplyBean o) {
|
public void export(HttpServletRequest request, HttpServletResponse response,PlanApplyBean o) {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue