refactor(client): 重构银行和公司相关代码

- 更新了多个类中的导入语句,替换了模型类为对应的VO类
- 优化了部分方法的参数和返回类型,使用VO类替代模型类
- 重构了自动补全功能,使用统一的泛型方法
- 添加了缓存注解,提高了数据访问性能
- 优化了部分代码结构,提高了可维护性
This commit is contained in:
2025-09-18 09:08:57 +08:00
parent d0645c33f1
commit 2752828094
42 changed files with 341 additions and 243 deletions

View File

@@ -8,7 +8,7 @@ import com.ecep.contract.model.NamedEntity;
import lombok.Data;
@Data
public class CompanyOldNameVo implements IdentityEntity, NamedEntity {
public class CompanyOldNameVo implements IdentityEntity, NamedEntity, CompanyBasedVo {
private Integer id;
private Integer companyId;
private String name;