| | |
| | | |
| | | import com.dsh.course.dto.CreateHistoryDto; |
| | | import com.dsh.course.dto.GetHistoryDto; |
| | | import com.dsh.course.entity.EvaluateStudent; |
| | | import com.dsh.course.feignClient.account.model.*; |
| | | |
| | | import com.dsh.course.dto.StudentSearch; |
| | |
| | | |
| | | @PostMapping("/student/getUserStore") |
| | | List<Integer> getUserStore(Integer id); |
| | | @PostMapping("/student/getUserYys") |
| | | List<Integer> getUserYys(Integer id); |
| | | @PostMapping("/student/getUserPtVip") |
| | | List<Integer> getUserPtVip(); |
| | | |
| | |
| | | HashMap<String, Object> userAndVipStore(Integer id); |
| | | @PostMapping("/student/stuPt") |
| | | HashMap<String, Object> stuPt(); |
| | | @PostMapping("/student/stuYys") |
| | | HashMap<String, Object> stuYys(@RequestBody Integer id); |
| | | @PostMapping("/student/stuStores") |
| | | HashMap<String, Object> stuStores(@RequestBody Integer id); |
| | | |
| | | |
| | | @PostMapping("/student/save") |
| | | void save(EvaluateStudent evaluateStudent); |
| | | @PostMapping("/student/comdel") |
| | | void comdel(@RequestBody Integer id); |
| | | } |