|
@@ -13,10 +13,7 @@ import com.zhongzheng.modules.alisms.service.IAliSmsService;
|
|
|
import com.zhongzheng.modules.user.bo.*;
|
|
|
import com.zhongzheng.modules.user.entity.ClientLoginUser;
|
|
|
import com.zhongzheng.modules.user.service.IUserService;
|
|
|
-import com.zhongzheng.modules.user.vo.UserIdCardBatchVo;
|
|
|
-import com.zhongzheng.modules.user.vo.UserStatstVo;
|
|
|
-import com.zhongzheng.modules.user.vo.UserStudyRecordVo;
|
|
|
-import com.zhongzheng.modules.user.vo.UserVo;
|
|
|
+import com.zhongzheng.modules.user.vo.*;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
@@ -239,4 +236,10 @@ public class UserController extends BaseController {
|
|
|
List<UserVo> list = iUserService.dangAnList(bo);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("获取用户同专业下课程")
|
|
|
+ @PostMapping("/getUserBusinessGoods")
|
|
|
+ public AjaxResult<List<UserBusinessGoodsVo>> getUserBusinessGoods(@RequestBody List<UserBusinessGoodsBo> bos) {
|
|
|
+ return AjaxResult.success(iUserService.getUserBusinessGoods(bos));
|
|
|
+ }
|
|
|
}
|