feat(credit): 新增客户发布日期字段

- 在示例数据中添加 releaseDate 字段
- 在实体映射中增加 releaseDate 属性同步逻辑
This commit is contained in:
2025-12-16 15:01:40 +08:00
parent b43f8ffc76
commit 14d1c83139

View File

@@ -237,6 +237,7 @@ public class CreditUserController extends BaseController {
CreditUserImportParam example = new CreditUserImportParam(); CreditUserImportParam example = new CreditUserImportParam();
example.setCode("CUS001"); example.setCode("CUS001");
example.setName("示例客户"); example.setName("示例客户");
example.setReleaseDate("2023-01-01");
example.setType(0); example.setType(0);
example.setRole("采购方"); example.setRole("采购方");
example.setInfoType("企业"); example.setInfoType("企业");
@@ -303,6 +304,7 @@ public class CreditUserController extends BaseController {
entity.setCode(param.getCode()); entity.setCode(param.getCode());
entity.setName(param.getName()); entity.setName(param.getName());
entity.setReleaseDate(param.getReleaseDate());
entity.setType(param.getType()); entity.setType(param.getType());
entity.setRole(param.getRole()); entity.setRole(param.getRole());
entity.setInfoType(param.getInfoType()); entity.setInfoType(param.getInfoType());