This commit is contained in:
guohb
2024-04-30 16:03:31 +08:00
parent 318fc9b776
commit b6d63827f4

View File

@@ -53,7 +53,9 @@ public class KdzApiServiceImpl implements KdzApiService {
Long shopId = shopInfoDO.getId();
LicenseTransactDO licenseTransactDO = new LicenseTransactDO();
licenseTransactDO.setShopId(shopId);
licenseTransactDO = applyLicenseMapper.selectOne(licenseTransactDO);
// licenseTransactDO = applyLicenseMapper.selectOneByExample(licenseTransactDO);
//todo 测试
licenseTransactDO = applyLicenseMapper.select(licenseTransactDO).get(0);
LicenseApiResponse convertResp = convert(licenseTransactDO,storeNum);
return convertResp;
}