| | |
| | | import com.panzhihua.common.model.dtos.shop.*; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopGoodsDTO; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopStoreDTO; |
| | | import com.panzhihua.common.model.dtos.user.PageInputUserDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @PostMapping("/common/data/population/detail") |
| | | R detailPopulation(@RequestParam(value = "populationId") Long populationId); |
| | | |
| | | |
| | | /** |
| | | * 根据id修改实有人口标签列表 |
| | | * |
| | |
| | | */ |
| | | @PostMapping("/shop/wxPay") |
| | | R wxPay(@RequestBody OrderPayDTO orderPayDTO); |
| | | |
| | | /** |
| | | * 编辑实有人口 |
| | | * @param editComMngPopulationVO |
| | | * @return |
| | | */ |
| | | @PostMapping("/common/data/population/edit") |
| | | R editPopulation(@RequestBody EditComMngPopulationVO editComMngPopulationVO, @RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 微心愿删除 |
| | | * @param id 微心愿id |
| | | */ |
| | | @PostMapping("deletemicrowish") |
| | | R deletemicrowish(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 基础数据》特殊群体》分页查询 |
| | | * @param pageInputUserDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("common/data/special/page") |
| | | R specialInputUser(@RequestBody PageInputUserDTO pageInputUserDTO); |
| | | |
| | | /** |
| | | * 删除特殊群体人员 |
| | | * @param id 特殊群体id |
| | | * @return 删除结果 |
| | | */ |
| | | @PostMapping("common/data/special/delete") |
| | | R deleteSpecialInputUser(@RequestParam(value = "id") Long id); |
| | | } |