This commit is contained in:
gyq
2024-05-30 11:07:01 +08:00
parent 075db76d00
commit fc9f0ea2a3
3 changed files with 55 additions and 2 deletions

View File

@@ -97,3 +97,15 @@ export function storagePut(data) {
data
});
}
/**
* 查询存取酒记录
* @returns
*/
export function recordList(params) {
return request({
url: "/api/storage/recordList",
method: "get",
params
});
}