RltComponentRel.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* ==============================================================================
  2. * 功能描述:查询所有组件关系信息
  3. * 创 建 者:Garrett
  4. * 创建日期:2018/6/26 18:22:33
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace SAGA.MBI.Model
  12. {
  13. /// <summary>
  14. /// RltComponentRel
  15. /// </summary>
  16. public class RltComponentRel
  17. {
  18. private string cmpt_relation_id;
  19. /// <summary>
  20. /// 组件关系id
  21. /// </summary>
  22. public string CmptRelationId
  23. {
  24. set { cmpt_relation_id = value; }
  25. get { return cmpt_relation_id; }
  26. }
  27. private string base_cmpt_code;
  28. /// <summary>
  29. /// 原始组件编码
  30. /// </summary>
  31. public string BaseCmptCode
  32. {
  33. get { return base_cmpt_code; }
  34. set { base_cmpt_code = value; }
  35. }
  36. private string god_hand_cmpt_code;
  37. /// <summary>
  38. /// 上帝之手组件编码
  39. /// </summary>
  40. public string GodHandCmptCode
  41. {
  42. get { return god_hand_cmpt_code; }
  43. set { god_hand_cmpt_code = value; }
  44. }
  45. }
  46. }