提交新增接口base

This commit is contained in:
zhouxain01 2023-12-20 20:13:27 +08:00
parent 597be4eb52
commit 5d1c802cb6
1 changed files with 16 additions and 0 deletions

View File

@ -154,6 +154,22 @@ export function unitTypeList(query) {
params: query
})
}
// 标签编号-列表
export function getMaMachineLabelApi(query) {
return request({
url: '/base/maMachineLabel/list',
method: 'get',
params: query
})
}
//单位类型--新增
export function addMaMachineLabelApi(data) {
return request({
url: '/base/maMachineLabel',
method: 'post',
data: data
})
}
// 单位类型-详情
export function unitTypeDetail(query) {
return request({