fix:制造商相关问题调整

dev_1.0.2
jiangpeng 2026-06-30 18:13:52 +08:00
parent c10a81f271
commit 40f40baf5e
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ public class VendorInfoServiceImpl implements IVendorInfoService {
vendorInfo.setCreateBy(ShiroUtils.getUserId().toString());
return vendorInfoMapper.insertVendorInfo(vendorInfo);
} catch (Exception e) {
throw new ServiceException("保存超时,请重试");
throw new ServiceException(e.getMessage());
} finally {
lock.unlock();
}
@ -119,7 +119,7 @@ public class VendorInfoServiceImpl implements IVendorInfoService {
vendorInfo.setUpdateBy(ShiroUtils.getUserId().toString());
return vendorInfoMapper.updateVendorInfo(vendorInfo);
} catch (Exception e) {
throw new ServiceException("保存超时,请重试");
throw new ServiceException(e.getMessage());
} finally {
lock.unlock();
}