Browse Source

louti

master
zxc 3 years ago
parent
commit
ee56e11a24
  1. 1
      epmet-module/resi-partymember/resi-partymember-server/src/main/java/com/epmet/modules/partyOrg/controller/IcPartyActController.java

1
epmet-module/resi-partymember/resi-partymember-server/src/main/java/com/epmet/modules/partyOrg/controller/IcPartyActController.java

@ -240,6 +240,7 @@ public class IcPartyActController {
@PostMapping("yearSearch")
public Result<List<YearSearchDetailResultDTO>> yearSearch(@LoginUser TokenDto tokenDto, @RequestBody YearSearchFormDTO formDTO){
ValidatorUtils.validateEntity(formDTO, YearSearchFormDTO.YearSearchForm.class);
formDTO.setStaffId(tokenDto.getUserId());
formDTO.setCustomerId(tokenDto.getCustomerId());
return new Result<List<YearSearchDetailResultDTO>>().ok(icPartyActService.yearSearch(formDTO));

Loading…
Cancel
Save