无关风月
3 天以前 b27efc697f2f81e0d0f247a2708e58af52a5df9b
cloud-server-management/src/main/java/com/dsh/course/feignClient/account/AppUserClient.java
@@ -11,6 +11,7 @@
import com.dsh.guns.modular.system.model.*;
import com.dsh.guns.modular.system.model.dto.GiftSearchDto;
import com.dsh.guns.modular.system.model.dto.SelectDto;
import com.dsh.guns.modular.system.model.dto.UpdateIntegral;
import com.dsh.guns.modular.system.util.ResultUtil;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
@@ -75,7 +76,7 @@
    List<TAppUser> queryByNamePhone(QueryByNamePhone queryByNamePhone);
    @PostMapping("/base/appUser/queryById")
    TAppUser queryById(Integer appUserId);
    TAppUser queryById(@RequestBody Integer appUserId);
    @PostMapping("/student/webStudentList")
    List<TStudentDto> queryWebUser(@RequestBody StudentSearch search);
@@ -121,14 +122,14 @@
    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);
@@ -141,18 +142,23 @@
    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);
    @RequestMapping("/base/appUser/updateIntegral")
    Boolean updateIntegral(@RequestBody UpdateIntegral updateIntegral);
}