refactor(client): 重构银行和公司相关代码
- 更新了多个类中的导入语句,替换了模型类为对应的VO类 - 优化了部分方法的参数和返回类型,使用VO类替代模型类 - 重构了自动补全功能,使用统一的泛型方法 - 添加了缓存注解,提高了数据访问性能 - 优化了部分代码结构,提高了可维护性
This commit is contained in:
@@ -6,10 +6,9 @@ import java.time.LocalDate;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CompanyCustomerVo implements IdentityEntity {
|
||||
public class CompanyCustomerVo implements IdentityEntity,CompanyBasedVo {
|
||||
private Integer id;
|
||||
private Integer companyId;
|
||||
private String companyName;
|
||||
private LocalDate developDate;
|
||||
private String path;
|
||||
private Integer companyContactId;
|
||||
|
||||
Reference in New Issue
Block a user