| | |
| | | import com.panzhihua.common.model.vos.MenuVO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @GetMapping("getUserByPhone") |
| | | R getSysUserVOByPhone(@RequestParam(value = "phone") String phone); |
| | | |
| | | /** |
| | | * 通过账号查询用户信息 |
| | | * @param account |
| | | * @return |
| | | */ |
| | | @GetMapping("getUserByAccount") |
| | | R getSysUserVOByAccountAndType(@RequestParam(value = "account") String account,@RequestParam(value = "type") Integer type); |
| | | |
| | | |
| | | /** |
| | | * 基础数据》居民管理》居民列表 |
| | |
| | | */ |
| | | @PostMapping("/common/data/special/export") |
| | | R specialUserExport(@RequestBody ExportSpecialUserDTO exportSpecialUserDTO); |
| | | |
| | | /** |
| | | * 查询所有人员标签 |
| | | * @return 标签集合 |
| | | */ |
| | | @PostMapping("listtag/getTag") |
| | | R listTags(@RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 添加SysUser信息 |
| | | * @param storeVO sysUser信息 |
| | | * @return 添加sysUser结果 |
| | | */ |
| | | @PostMapping("addSysUser") |
| | | R addSysUser(@RequestBody ShopStoreVO storeVO); |
| | | } |