EngineComponentDto.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace WePlatform.WeModel.Component.Dto
  5. {
  6. /// <summary>
  7. /// 推演引擎事务组件
  8. /// </summary>
  9. [AutoMapTo(typeof(EngineComponentInfo)),AutoMapFrom(typeof(EngineComponentInfo))]
  10. public class EngineComponentDto: EntityDto<string>
  11. {
  12. /// <summary>
  13. /// 组件名称
  14. /// </summary>
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// 参数映射
  18. /// </summary>
  19. public string Parameters { get; set; }
  20. /// <summary>
  21. /// 事务描述
  22. /// </summary>
  23. public string Description { get; set; }
  24. /// <summary>
  25. /// 事务逻辑
  26. /// </summary>
  27. public string ComponentScript { get; set; }
  28. /// <summary>
  29. /// 类全名
  30. /// </summary>
  31. public string ComponentClass { get; set; }
  32. /// <summary>
  33. /// 程序集
  34. /// </summary>
  35. public string ComponentLib { get; set; }
  36. /// <summary>
  37. /// 注册Key(IOC注入)
  38. /// </summary>
  39. public string RegisterKey { get; set; }
  40. }
  41. }