RuralPowerCompetition_yizhe.../DataService/Model/zhc_fault_tree.cs

106 lines
2.3 KiB
C#

/** 版本信息模板在安装目录下,可自行修改。
* 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
{
/// <summary>
/// zhc_fault_tree:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[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;
/// <summary>
///
/// </summary>
public string tree_id
{
set{ _tree_id=value;}
get{return _tree_id;}
}
/// <summary>
///
/// </summary>
public string parent_id
{
set{ _parent_id=value;}
get{return _parent_id;}
}
/// <summary>
///
/// </summary>
public string code
{
set{ _code=value;}
get{return _code;}
}
/// <summary>
///
/// </summary>
public string name
{
set{ _name=value;}
get{return _name;}
}
/// <summary>
///
/// </summary>
public string dsc
{
set{ _dsc=value;}
get{return _dsc;}
}
/// <summary>
///
/// </summary>
public int? state
{
set{ _state=value;}
get{return _state;}
}
/// <summary>
///
/// </summary>
public int? position
{
set{ _position=value;}
get{return _position;}
}
/// <summary>
///
/// </summary>
public string logic_gate
{
set{ _logic_gate=value;}
get{return _logic_gate;}
}
#endregion Model
}
}