refactor(factory): 重构工厂结构体移除银行相关字段

- 移除了 Bank、BankAccount 和 BankAddress 字段
- 更新了 Factory 结构体定义
- 简化了相关数据结构,提升代码简洁性
This commit is contained in:
2026-05-07 17:07:35 +08:00
parent f95ae16d68
commit d025186d28
2 changed files with 1 additions and 9 deletions

View File

@@ -2,4 +2,5 @@ package factory
type Factory struct {
Contact contact
Bank bank
}