using medical.transfomer.entity; namespace medical.transfomer.dto { public class TransformationConfig { // 方法配置集合(对应MethodConfigs属性) public List MethodConfigs { get; set; } // 对象组装规则集合(对应ObjectAssemblies属性) public List ObjectAssemblies { get; set; } // 对象映射规则集合(对应ObjectMappings属性) public List ObjectMappings { get; set; } } }