|
@ -77,6 +77,19 @@ public class IcPartyActivityController { |
|
|
return new Result<PageData<IcPartyActivityDTO>>().ok(page); |
|
|
return new Result<PageData<IcPartyActivityDTO>>().ok(page); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description: 联建活动 大屏 |
|
|
|
|
|
* @param formDTO: |
|
|
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.commons.tools.page.PageData < com.epmet.dto.IcPartyActivityDTO>> |
|
|
|
|
|
* @Author: lichao |
|
|
|
|
|
* @Date: 2023/11/30 15:53 |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("screen/search") |
|
|
|
|
|
public Result<PageData<IcPartyActivityDTO>> pageForScreen(@RequestBody PartyActivityFormDTO formDTO){ |
|
|
|
|
|
PageData<IcPartyActivityDTO> page = icPartyActivityService.search(formDTO); |
|
|
|
|
|
return new Result<PageData<IcPartyActivityDTO>>().ok(page); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@PostMapping("detail") |
|
|
@PostMapping("detail") |
|
|
public Result<IcPartyActivityDTO> get(@RequestBody IcPartyActivityDTO dto){ |
|
|
public Result<IcPartyActivityDTO> get(@RequestBody IcPartyActivityDTO dto){ |
|
|
IcPartyActivityDTO data = icPartyActivityService.get(dto.getId()); |
|
|
IcPartyActivityDTO data = icPartyActivityService.get(dto.getId()); |
|
|