You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
531 B
16 lines
531 B
using Models; |
|
using ReZero.SuperAPI.STD; |
|
namespace YbTest.Models |
|
{ |
|
public class TransformationConfig |
|
{ |
|
// 方法配置集合(对应MethodConfigs属性) |
|
public List<STD_METHOD_CONFIG> MethodConfigs { get; set; } |
|
|
|
// 对象组装规则集合(对应ObjectAssemblies属性) |
|
public List<STD_OBJECT_ASSEMBLY> ObjectAssemblies { get; set; } |
|
|
|
// 对象映射规则集合(对应ObjectMappings属性) |
|
public List<STD_OBJECT_MAPPING> ObjectMappings { get; set; } |
|
} |
|
}
|
|
|