304 lines
6.3 KiB
C#
304 lines
6.3 KiB
C#
/** 版本信息模板在安装目录下,可自行修改。
|
|
* pow_exam.cs
|
|
*
|
|
* 功 能: N/A
|
|
* 类 名: pow_exam
|
|
*
|
|
* Ver 变更日期 负责人 变更内容
|
|
* ───────────────────────────────────
|
|
* V0.01 2024/7/10 10:19:45 N/A 初版
|
|
*
|
|
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
|
|
*┌──────────────────────────────────┐
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
|
|
*│ 版权所有:动软卓越(北京)科技有限公司 │
|
|
*└──────────────────────────────────┘
|
|
*/
|
|
using System;
|
|
namespace Competition.Mysql.Model
|
|
{
|
|
/// <summary>
|
|
/// pow_exam:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class pow_exam
|
|
{
|
|
public pow_exam()
|
|
{}
|
|
#region Model
|
|
private string _examid;
|
|
private string _examname;
|
|
private DateTime? _startexamtime;
|
|
private DateTime? _endexamtime;
|
|
private string _examinationduration;
|
|
private string _synopsis;
|
|
private string _coverpath;
|
|
private string _covername;
|
|
private string _sceneid;
|
|
private string _platformareaid;
|
|
private string _lineid;
|
|
private DateTime? _linepatroldate;
|
|
private DateTime? _handledate;
|
|
private string _workordercontent;
|
|
private string _backgroundinformation;
|
|
private string _incominglinemodellength;
|
|
private string _outgoinglinemodellength;
|
|
private string _type;
|
|
private string _status;
|
|
private DateTime? _createtime;
|
|
private DateTime? _releasetime;
|
|
private string _leakageprotection;
|
|
private string _overloadprotection;
|
|
private string _shortcircuitdelayprotection;
|
|
private string _shortcircuitprotection;
|
|
private string _undervoltageprotection;
|
|
private string _overvoltageprotection;
|
|
private string _phaselossprotection;
|
|
private string _fusiblecorecurrent;
|
|
private string _weather;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ExamId
|
|
{
|
|
set{ _examid=value;}
|
|
get{return _examid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ExamName
|
|
{
|
|
set{ _examname=value;}
|
|
get{return _examname;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? StartExamTime
|
|
{
|
|
set{ _startexamtime=value;}
|
|
get{return _startexamtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? EndExamTime
|
|
{
|
|
set{ _endexamtime=value;}
|
|
get{return _endexamtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ExaminationDuration
|
|
{
|
|
set{ _examinationduration=value;}
|
|
get{return _examinationduration;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Synopsis
|
|
{
|
|
set{ _synopsis=value;}
|
|
get{return _synopsis;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CoverPath
|
|
{
|
|
set{ _coverpath=value;}
|
|
get{return _coverpath;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CoverName
|
|
{
|
|
set{ _covername=value;}
|
|
get{return _covername;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SceneId
|
|
{
|
|
set{ _sceneid=value;}
|
|
get{return _sceneid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PlatformAreaId
|
|
{
|
|
set{ _platformareaid=value;}
|
|
get{return _platformareaid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LineId
|
|
{
|
|
set{ _lineid=value;}
|
|
get{return _lineid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? LinePatrolDate
|
|
{
|
|
set{ _linepatroldate=value;}
|
|
get{return _linepatroldate;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? HandleDate
|
|
{
|
|
set{ _handledate=value;}
|
|
get{return _handledate;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string WorkOrderContent
|
|
{
|
|
set{ _workordercontent=value;}
|
|
get{return _workordercontent;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string BackgroundInformation
|
|
{
|
|
set{ _backgroundinformation=value;}
|
|
get{return _backgroundinformation;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string IncomingLineModelLength
|
|
{
|
|
set{ _incominglinemodellength=value;}
|
|
get{return _incominglinemodellength;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OutgoingLineModelLength
|
|
{
|
|
set{ _outgoinglinemodellength=value;}
|
|
get{return _outgoinglinemodellength;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Type
|
|
{
|
|
set{ _type=value;}
|
|
get{return _type;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Status
|
|
{
|
|
set{ _status=value;}
|
|
get{return _status;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? CreateTime
|
|
{
|
|
set{ _createtime=value;}
|
|
get{return _createtime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? ReleaseTime
|
|
{
|
|
set{ _releasetime=value;}
|
|
get{return _releasetime;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LeakageProtection
|
|
{
|
|
set{ _leakageprotection=value;}
|
|
get{return _leakageprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OverloadProtection
|
|
{
|
|
set{ _overloadprotection=value;}
|
|
get{return _overloadprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ShortCircuitDelayProtection
|
|
{
|
|
set{ _shortcircuitdelayprotection=value;}
|
|
get{return _shortcircuitdelayprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ShortCircuitProtection
|
|
{
|
|
set{ _shortcircuitprotection=value;}
|
|
get{return _shortcircuitprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string UndervoltageProtection
|
|
{
|
|
set{ _undervoltageprotection=value;}
|
|
get{return _undervoltageprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OvervoltageProtection
|
|
{
|
|
set{ _overvoltageprotection=value;}
|
|
get{return _overvoltageprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PhaseLossProtection
|
|
{
|
|
set{ _phaselossprotection=value;}
|
|
get{return _phaselossprotection;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string FusibleCoreCurrent
|
|
{
|
|
set{ _fusiblecorecurrent=value;}
|
|
get{return _fusiblecorecurrent;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Weather
|
|
{
|
|
set{ _weather=value;}
|
|
get{return _weather;}
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|