| | |
| | | |
| | | import com.panzhihua.common.model.dtos.grid.*; |
| | | import com.panzhihua.common.model.vos.*; |
| | | import com.panzhihua.common.model.vos.community.ComActVO; |
| | | import com.panzhihua.common.model.vos.grid.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @param idCard |
| | | * @return |
| | | */ |
| | | @PostMapping("/event/addSpecial") |
| | | @PostMapping("/event/getSpecialPopulation") |
| | | R getSpecialPopulation(String idCard); |
| | | |
| | | /** |
| | |
| | | */ |
| | | @PostMapping("/easy/report") |
| | | R easyReport(@RequestBody ComActEasyPhotoHandleDTO photoHandleDTO); |
| | | |
| | | /** |
| | | * 添加发布宣传教育事件 |
| | | * @param publicityEventAddDTO 请求参数 |
| | | * @return 添加发布结果 |
| | | */ |
| | | @PostMapping("/event/addPublicity") |
| | | R addPublicity(@RequestBody PublicityEventAddDTO publicityEventAddDTO); |
| | | |
| | | /** |
| | | * 保存宣传教育事件草稿 |
| | | * @param publicityEventEditDTO 请求参数 |
| | | * @return 保存结果 |
| | | */ |
| | | @PostMapping("/event/savePublicityDraft") |
| | | R savePublicityDraft(@RequestBody PublicityEventEditDTO publicityEventEditDTO); |
| | | |
| | | /** |
| | | * 分页查询宣传教育事件 |
| | | * @param pagePublicityEventDTO 请求参数 |
| | | * @return 结果 |
| | | */ |
| | | @PostMapping("/event/queryPublicity") |
| | | R queryPublicity(@RequestBody PagePublicityEventDTO pagePublicityEventDTO); |
| | | |
| | | /** |
| | | * 分页查询社区列表 |
| | | * @return 结果 |
| | | */ |
| | | @PostMapping("/event/actList") |
| | | R actList(); |
| | | } |