Files
education/frontend/src/api/teachBusiness/studentTeamTask.js
T
2026-08-23 19:54:30 +08:00

19 lines
626 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
})
}