Files
school-developer/src/api/stuwork/classassets.ts
2026-02-09 20:03:42 +08:00

15 lines
439 B
TypeScript
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';
/**
* 教室公物编辑及门锁密码
* 接口文档POST /api/stuwork/classassets/edit
* @param data 教室公物数据(包含 buildingNo, deptName, classCode, position, platformType, tyType, tvType, chairCnt, tableCnt, remarks, password 等)
*/
export const editAssets = (data: any) => {
return request({
url: '/stuwork/classassets/edit',
method: 'post',
data,
});
};