| | |
| | | package com.dsh.course.feignClient.account; |
| | | |
| | | import com.dsh.course.dto.CreateHistoryDto; |
| | | import com.dsh.course.dto.GetHistoryDto; |
| | | import com.dsh.course.dto.StudentSearch; |
| | | import com.dsh.course.dto.TStudentDto; |
| | | import com.dsh.course.dto.*; |
| | | import com.dsh.course.feignClient.account.model.QueryAppUser; |
| | | import com.dsh.course.feignClient.account.model.QueryAppUserVO; |
| | | import com.dsh.course.feignClient.account.model.QueryByNamePhone; |
| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | @PostMapping("/student/queryStudentCom") |
| | | List<Map<String, Object>> listCom(@RequestBody Integer id); |
| | | |
| | | |
| | | @PostMapping("/student/frozen") |
| | | void frozen(@RequestBody TStudent student); |
| | | @PostMapping("/student/getById") |
| | | Date getById(@RequestBody Integer tStudentId); |
| | | @PostMapping("/student/update1") |
| | | void update(@RequestBody updateTimeDto updateTimeDto); |
| | | } |