| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using Abp.AutoMapper;
- using System.ComponentModel.DataAnnotations;
- using IwbZero.AppServiceBase;
- namespace WePlatform.WeModel.Component.Dto
- {
-
- /// <summary>
- /// 推演引擎事务组件
- /// </summary>
- [AutoMapTo(typeof(EngineComponentInfo))]
- public class EngineComponentCreateDto:IwbEntityDto
- {
-
- /// <summary>
- /// 组件名称
- /// </summary>
- [StringLength(EngineComponentInfo.NameLength)]
- public string Name { get; set; }
- /// <summary>
- /// 参数映射
- /// </summary>
- [StringLength(EngineComponentInfo.ParameterLength)]
- public string Parameters { get; set; }
- /// <summary>
- /// 事务描述
- /// </summary>
- [StringLength(EngineComponentInfo.DescLength)]
- public string Description { get; set; }
- /// <summary>
- /// 事务逻辑
- /// </summary>
- [StringLength(EngineComponentInfo.ScriptLength)]
- public string ComponentScript { get; set; }
- /// <summary>
- /// 类全名
- /// </summary>
- [StringLength(EngineComponentInfo.ClassLength)]
- public string ComponentClass { get; set; }
- /// <summary>
- /// 程序集
- /// </summary>
- [StringLength(EngineComponentInfo.LibLength)]
- public string ComponentLib { get; set; }
- /// <summary>
- /// 注册Key(IOC注入)
- /// </summary>
- [StringLength(EngineComponentInfo.KeyLength)]
- public string RegisterKey { get; set; }
- }
- }
|