课表
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 学员队任务表(StudentTeamTaskController /studentTeamTask)
|
||||
// 接口依据:studentTeamTask 控制器(前端 baseURL 为 /api,此处不重复 /api 前缀)
|
||||
|
||||
/**
|
||||
* 分页查询学员队任务表(按班次/年度)
|
||||
* GET /studentTeamTask/list
|
||||
* 查询参数(XYDRWB 实体字段):xydbh 学员队编号、nd 年度、kcxh 课次序号、jhkcxh 计划课次序号、xs 学时等
|
||||
* 返回:Page<XYDRWB>(records/total)
|
||||
*/
|
||||
export function listStudentTeamTask(params) {
|
||||
return request({
|
||||
url: '/studentTeamTask/list',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user