master:BUG优化;

pull/1121/head
liujiang 2025-08-08 13:45:17 +08:00
parent 5975f39cde
commit ec3dc540e9
2 changed files with 3 additions and 2 deletions

View File

@ -76,7 +76,7 @@ public class StoreCertificate extends XktBaseEntity {
*
*/
@Excel(name = "统一社会信用代码")
private Integer socialCreditCode;
private String socialCreditCode;
/**
*

View File

@ -168,7 +168,8 @@ public class StoreCertificateServiceImpl implements IStoreCertificateService {
(Objects.equals(x.getId(), storeCert.getIdCardEmblemFileId())
? FileType.ID_CARD_EMBLEM.getValue() : FileType.BUSINESS_LICENSE.getValue())))
.collect(Collectors.toList());
return new StoreCertStepResDTO().setStoreCert(BeanUtil.toBean(storeCert, StoreCertStepResDTO.SCSStoreCertDTO.class).setFileList(fileDTOList))
return new StoreCertStepResDTO().setStoreCert(BeanUtil.toBean(storeCert, StoreCertStepResDTO.SCSStoreCertDTO.class)
.setStoreCertId(storeCert.getId()).setFileList(fileDTOList))
.setStoreBasic(BeanUtil.toBean(store, StoreCertStepResDTO.SCSStoreBasicDTO.class));
}