fix: 开放sn唯一校验

This commit is contained in:
caiyuchao
2025-07-28 10:28:07 +08:00
parent da65626cb7
commit 824ba341a2

View File

@@ -274,17 +274,17 @@ public class LicenseServiceImpl implements LicenseService {
if (StrUtil.isBlank(sn)) {
return true;
}
// LicenseDO license = licenseMapper.selectBySn(sn);
// if (license == null) {
// return true;
// }
// // 如果 id 为空,说明不用比较是否为相同 id 的License
// if (id == null) {
// return false;
// }
// if (!license.getId().equals(id)) {
// return false;
// }
LicenseDO license = licenseMapper.selectBySn(sn);
if (license == null) {
return true;
}
// 如果 id 为空,说明不用比较是否为相同 id 的License
if (id == null) {
return false;
}
if (!license.getId().equals(id)) {
return false;
}
return true;
}