refactor(contract): 重构客户文件类型相关代码,统一命名和继承结构
- 将 CompanyCustomerFileType 重命名为 CustomerFileType - 统一相关 VO 和 model 的继承结构,使用 BaseEnumEntity - 更新所有引用点,保持代码一致性 - 优化表格单元格显示逻辑,使用专用单元格工厂
This commit is contained in:
@@ -116,7 +116,7 @@ public class ComboBoxUtils {
|
||||
}
|
||||
}
|
||||
|
||||
public static <T extends IdentityEntity & NamedEntity> void initialComboBox(
|
||||
public static <T extends IdentityEntity> void initialComboBox(
|
||||
ComboBox<T> comboBox, Property<Integer> property, IEntityService<T> queryService, boolean hasNull) {
|
||||
ObservableList<T> list = FXCollections.observableArrayList();
|
||||
if (hasNull) {
|
||||
|
||||
Reference in New Issue
Block a user