Merge remote-tracking branch 'origin/cc_partner_init' into cc_partner_init

This commit is contained in:
zhangchenbiao
2024-04-30 16:15:11 +08:00

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;
}