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