/** 版本信息模板在安装目录下,可自行修改。 * zhc_fault_tree.cs * * 功 能: N/A * 类 名: zhc_fault_tree * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2021/4/16 18:03:09 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataService.Model { /// /// zhc_fault_tree:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class zhc_fault_tree { public zhc_fault_tree() {} #region Model private string _tree_id; private string _parent_id; private string _fault_list_id; private string _full_id; private string _full_name; private string _code; private string _name; private string _dsc; private int? _state = 0; private int? _position = 0; private string _logic_gate; private string _r1; private string _r2; private string _r3; private string _r4; private string _r5; private string _r6; /// /// /// public string tree_id { set { _tree_id = value; } get { return _tree_id; } } /// /// /// public string parent_id { set { _parent_id = value; } get { return _parent_id; } } /// /// /// public string fault_list_id { set { _fault_list_id = value; } get { return _fault_list_id; } } /// /// /// public string full_id { set { _full_id = value; } get { return _full_id; } } /// /// /// public string full_name { set { _full_name = value; } get { return _full_name; } } /// /// /// public string code { set { _code = value; } get { return _code; } } /// /// /// public string name { set { _name = value; } get { return _name; } } /// /// /// public string dsc { set { _dsc = value; } get { return _dsc; } } /// /// /// public int? state { set { _state = value; } get { return _state; } } /// /// /// public int? position { set { _position = value; } get { return _position; } } /// /// /// public string logic_gate { set { _logic_gate = value; } get { return _logic_gate; } } /// /// /// public string r1 { set { _r1 = value; } get { return _r1; } } /// /// /// public string r2 { set { _r2 = value; } get { return _r2; } } /// /// /// public string r3 { set { _r3 = value; } get { return _r3; } } /// /// /// public string r4 { set { _r4 = value; } get { return _r4; } } /// /// /// public string r5 { set { _r5 = value; } get { return _r5; } } /// /// /// public string r6 { set { _r6 = value; } get { return _r6; } } #endregion Model } }