| | |
| | | import com.panzhihua.common.model.dtos.user.PageInputUserDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.user.ComMngTagVO; |
| | | import com.panzhihua.common.model.vos.user.UserElectronicFileVO; |
| | | import com.panzhihua.common.validated.AddGroup; |
| | | import com.panzhihua.service_community.service.*; |
| | |
| | | @PostMapping("/car/import") |
| | | public R listSaveMngCarExcelVO(@RequestBody List<ComMngCarExcelVO> list, @RequestParam("communityId") Long communityId) { |
| | | return comMngCarService.listSaveMngCarExcelVO(list, communityId); |
| | | } |
| | | |
| | | /** |
| | | * 车辆导出 |
| | | * |
| | | * @param exportComMngCarExcelDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/car/export") |
| | | public R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO){ |
| | | return comMngCarService.exportRealCar(exportComMngCarExcelDTO); |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 基础数据》特殊群体》分页查询标签列表 |
| | | * @param comMngUserTagDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/special/tags/page") |
| | | public R specialInputUserTags(@RequestBody PageInputUserDTO comMngUserTagDTO){ |
| | | return comMngPopulationService.specialInputUserTags(comMngUserTagDTO); |
| | | } |
| | | |
| | | /** |
| | | * 新增或修改特殊群体标签 |
| | | * @param comMngTagVO |
| | | * @return |
| | | */ |
| | | @PostMapping("/special/tags/save") |
| | | public R saveSpecialInputUserTags(@RequestBody ComMngTagVO comMngTagVO){ |
| | | return comMngPopulationService.saveSpecialInputUserTags(comMngTagVO); |
| | | } |
| | | |
| | | /** |
| | | * 删除特殊群体标签 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/special/tags/delete") |
| | | public R deleteSpecialInputUserTags(@RequestParam(value = "id") Long id){ |
| | | return comMngPopulationService.deleteSpecialInputUserTags(id); |
| | | } |
| | | |
| | | /** |
| | | * 编辑实有人口_电子档案 |
| | | * |
| | | * @param userElectronicFileVO |