| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.panzhihua.common.model.dtos.grid.*; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActVO; |
| | | import com.panzhihua.common.model.vos.grid.EventDetailsVO; |
| | | import com.panzhihua.common.model.vos.grid.EventVO; |
| | | import com.panzhihua.service_grid.service.EventService; |
| | |
| | | |
| | | @Resource |
| | | private EventService eventService; |
| | | |
| | | /** |
| | | * 新增事件 |
| | | * @param eventAddDTO |
| | | * @return 新增结果 |
| | | */ |
| | | @PostMapping("/add") |
| | | R add(@RequestBody EventAddDTO eventAddDTO){ |
| | | return eventService.add(eventAddDTO); |
| | | }; |
| | | |
| | | /** |
| | | * 修改事件 |
| | | * @param eventEditDTO |
| | | * @return 维护结果 |
| | | */ |
| | | @PostMapping("/edit") |
| | | R edit(@RequestBody EventEditDTO eventEditDTO){ |
| | | return eventService.edit(eventEditDTO); |
| | | }; |
| | | |
| | | /** |
| | | * 分页查找事件 |
| | |
| | | return eventService.selectPublicity(pagePublicityEventDTO); |
| | | } |
| | | |
| | | /** |
| | | * 分页查询宣传教育事件 |
| | | * @return 结果 |
| | | */ |
| | | @PostMapping("/actList") |
| | | R<ComActVO> actList(){ |
| | | return eventService.actList(); |
| | | } |
| | | |
| | | } |