This commit is contained in:
2023-08-10 09:02:06 +08:00
parent ba59394115
commit 63eb91e64c
4 changed files with 37 additions and 9 deletions

View File

@@ -9,6 +9,16 @@ export function getClassTypeTableList(query) {
});
}
// 查询班型列表
export function getAllList(query) {
return request({
url: '/sch/classType/all',
method: 'get',
params: query
});
}
// 新增班型
export function insertClassType(params) {
return request({