| | |
| | | |
| | | import com.dsh.course.feignClient.account.model.QueryAppUser; |
| | | import com.dsh.course.feignClient.account.model.QueryAppUserVO; |
| | | |
| | | import com.dsh.course.dto.StudentSearch; |
| | | import com.dsh.course.dto.TStudentDto; |
| | | import com.dsh.course.feignClient.account.model.QueryByNamePhone; |
| | | import com.dsh.course.feignClient.account.model.TAppUser; |
| | | import com.dsh.guns.modular.system.model.TStudent; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @PostMapping("/base/appUser/queryById") |
| | | TAppUser queryById(Integer appUserId); |
| | | @PostMapping("/student/webStudentList") |
| | | List<TStudentDto> queryWebUser(@RequestBody StudentSearch search); |
| | | |
| | | /** |
| | | * 获取用户信息列表数据 |
| | |
| | | Object addAppUser(@RequestBody TAppUser query); |
| | | |
| | | |
| | | @PostMapping("/student/webOneStudent") |
| | | TStudentDto queryOneWebUser(@RequestParam("id") Integer id); |
| | | } |