| | |
| | | List<Integer> getUserYYs(Integer id); |
| | | |
| | | @PostMapping("/student/queryUserAgeYys") |
| | | HashMap<String, Object> queryUserAgeYys(Integer id); |
| | | HashMap<String, Object> queryUserAgeYys(List<Integer> ids); |
| | | @PostMapping("/student/queryUserAgeStore") |
| | | HashMap<String, Object> queryUserAgeStore(Integer id); |
| | | HashMap<String, Object> queryUserAgeStore(List<Integer> ids); |
| | | |
| | | @PostMapping("/student/queryUserAgeYys1") |
| | | HashMap<String, Object> queryUserAgeYys1(Integer id); |
| | | HashMap<String, Object> queryUserAgeYys1(List<Integer> ids); |
| | | @PostMapping("/student/queryUserAgeStore1") |
| | | HashMap<String, Object> queryUserAgeStore1(Integer id); |
| | | HashMap<String, Object> queryUserAgeStore1(List<Integer> ids); |
| | | |
| | | @PostMapping("/student/getUserStore") |
| | | List<Integer> getUserStore(Integer id); |
| | |
| | | HashMap<String, Object> userAndVipPt(Integer type); |
| | | |
| | | @PostMapping("/student/userAndVipYys") |
| | | HashMap<String, Object> userAndVipYys(Integer id); |
| | | HashMap<String, Object> userAndVipYys(List<Integer> ids); |
| | | @PostMapping("/student/userAndVipStore") |
| | | HashMap<String, Object> userAndVipStore(Integer id); |
| | | HashMap<String, Object> userAndVipStore(List<Integer> ids); |
| | | @PostMapping("/student/stuPt") |
| | | HashMap<String, Object> stuPt(); |
| | | @PostMapping("/student/stuYys") |
| | | HashMap<String, Object> stuYys(@RequestBody Integer id); |
| | | HashMap<String, Object> stuYys(@RequestBody List<Integer> ids); |
| | | @PostMapping("/student/stuStores") |
| | | HashMap<String, Object> stuStores(@RequestBody Integer id); |
| | | HashMap<String, Object> stuStores(@RequestBody List<Integer> ids); |
| | | |
| | | @PostMapping("/student/save") |
| | | void save(EvaluateStudent evaluateStudent); |
| | | @PostMapping("/student/comdel") |
| | | void comdel(@RequestBody Integer id); |
| | | @PostMapping("/student/updatePassWord") |
| | | void updatePassWord(@RequestBody List<String> strings); |
| | | } |