123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /* ==============================================================================
- * 功能描述:查询所有组件关系信息
- * 创 建 者:Garrett
- * 创建日期:2018/6/26 18:22:33
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SAGA.MBI.Model
- {
- /// <summary>
- /// RltComponentRel
- /// </summary>
- public class RltComponentRel
- {
- private string cmpt_relation_id;
- /// <summary>
- /// 组件关系id
- /// </summary>
- public string CmptRelationId
- {
- set { cmpt_relation_id = value; }
- get { return cmpt_relation_id; }
- }
- private string base_cmpt_code;
- /// <summary>
- /// 原始组件编码
- /// </summary>
- public string BaseCmptCode
- {
- get { return base_cmpt_code; }
- set { base_cmpt_code = value; }
- }
- private string god_hand_cmpt_code;
- /// <summary>
- /// 上帝之手组件编码
- /// </summary>
- public string GodHandCmptCode
- {
- get { return god_hand_cmpt_code; }
- set { god_hand_cmpt_code = value; }
- }
- }
- }
|