/** 版本信息模板在安装目录下,可自行修改。 * 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 _code; private string _name; private string _dsc; private int? _state=0; private int? _position=0; private string _logic_gate; /// /// /// 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 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;} } #endregion Model } }