feat: 取客户最大sn

This commit is contained in:
caiyuchao
2025-05-26 10:19:36 +08:00
parent 588709c589
commit 701c56e0b3
2 changed files with 14 additions and 1 deletions

View File

@@ -63,4 +63,9 @@ async function isCustomerNameExists(
});
}
export { isCustomerNameExists };
/** 查询当前最大sn */
async function getMaxSn() {
return requestClient.get<boolean>('/license/customer/max-sn');
}
export { getMaxSn, isCustomerNameExists };