| | |
| | | |
| | | 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; |
| | | import com.dsh.course.dto.TStudentDto; |
| | | import com.dsh.course.feignClient.other.model.SiteChangeStateVO; |
| | | import com.dsh.guns.modular.system.model.AdvertisementChangeStateDTO; |
| | | import com.dsh.guns.modular.system.model.AppUserByNameAndPhoneDTO; |
| | | import com.dsh.guns.modular.system.model.TStudent; |
| | | 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.util.ResultUtil; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | public interface AppUserClient { |
| | | |
| | | |
| | | /** |
| | | * 根据介绍有礼id查询当前活动参与次数 |
| | | */ |
| | | @PostMapping("/base/appUser/getActivityPeoples") |
| | | Integer getActivityPeoples(@RequestBody Integer activityId); |
| | | /** |
| | | * 介绍有礼 -- 参与用户列表 |
| | | */ |
| | | @PostMapping("/base/appUser/queryIntroduceAll") |
| | | List<IntroduceUser> queryIntroduceAll(@RequestBody IntroduceUserQuery query); |
| | | /** |
| | | * 根据用户姓名和电话模糊查询 |
| | | */ |
| | |
| | | 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); |
| | | |
| | |
| | | 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); |
| | | @PostMapping("/student/getUserYys") |
| | | List<Integer> getUserYys(Integer id); |
| | | @PostMapping("/student/getUserPtVip") |
| | | List<Integer> getUserPtVip(); |
| | | |
| | |
| | | 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); |
| | | } |