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.
18 lines
534 B
18 lines
534 B
3 days ago
|
|
||
|
using medical.transfomer.entity;
|
||
|
|
||
|
namespace medical.transfomer.dto
|
||
3 days ago
|
{
|
||
|
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; }
|
||
|
}
|
||
|
}
|