using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
namespace WePlatform.WeModel.Component.Dto
{
///
/// 推演引擎事务组件
///
[AutoMapTo(typeof(EngineComponentInfo)),AutoMapFrom(typeof(EngineComponentInfo))]
public class EngineComponentDto: EntityDto
{
///
/// 组件名称
///
public string Name { get; set; }
///
/// 参数映射
///
public string Parameters { get; set; }
///
/// 事务描述
///
public string Description { get; set; }
///
/// 事务逻辑
///
public string ComponentScript { get; set; }
///
/// 类全名
///
public string ComponentClass { get; set; }
///
/// 程序集
///
public string ComponentLib { get; set; }
///
/// 注册Key(IOC注入)
///
public string RegisterKey { get; set; }
}
}