| | |
| | | import com.panzhihua.common.model.vos.community.ComMngStructAreaVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | |
| | | */ |
| | | @PostMapping("export") |
| | | R export(@RequestBody ExportUserDTO exportUserDTO); |
| | | |
| | | /** |
| | | * 通过手机号码查询用户信息 |
| | | * @param phone |
| | | * @return |
| | | */ |
| | | @GetMapping("getUserByPhone") |
| | | R getSysUserVOByPhone(@RequestParam(value = "phone") String phone); |
| | | |
| | | } |