|
@@ -21,6 +21,8 @@ import com.zhongzheng.modules.grade.service.IUserPeriodService;
|
|
|
import com.zhongzheng.modules.grade.vo.ClassPeriodStudentExportAllVo;
|
|
|
import com.zhongzheng.modules.grade.vo.SyncGoodsExport;
|
|
|
import com.zhongzheng.modules.order.bo.OrderAddBo;
|
|
|
+import com.zhongzheng.modules.order.service.IOrderService;
|
|
|
+import com.zhongzheng.modules.order.service.impl.OrderServiceImpl;
|
|
|
import com.zhongzheng.modules.system.service.ISysUserService;
|
|
|
import com.zhongzheng.modules.user.vo.UserExportVo;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -56,6 +58,8 @@ public class CommonController
|
|
|
private IGoodsService iGoodsService;
|
|
|
@Autowired
|
|
|
private IUserPeriodService iUserPeriodService;
|
|
|
+ @Autowired
|
|
|
+ private IOrderService iOrderService;
|
|
|
|
|
|
/**
|
|
|
* 通用下载请求
|
|
@@ -178,4 +182,12 @@ public class CommonController
|
|
|
}
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
+
|
|
|
+ /* @ApiOperation("测试分班")
|
|
|
+ @GetMapping("common/jzs/grade")
|
|
|
+ public AjaxResult<Void> testGrade()
|
|
|
+ {
|
|
|
+ iOrderService.arrangeGrade("安管继续教育网络班B类",905L,123L,null,114L,"",174L);
|
|
|
+ return AjaxResult.success();
|
|
|
+ }*/
|
|
|
}
|