/** 版本信息模板在安装目录下,可自行修改。 * pow_user_exam.cs * * 功 能: N/A * 类 名: pow_user_exam * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2022/8/24 15:43:08 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataService.Model { /// /// pow_user_exam:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class pow_user_exam { public pow_user_exam() {} #region Model private string _userexamid; private string _userid; private string _examid; private string _examname; private DateTime? _startexamtime; private DateTime? _endexamtime; private string _examinationduration; private string _restorescenemsg; private string _sceneid; private string _scenename; private string _platformareaid; private string _platformareaname; private string _lineid; private string _linename; private string _selectplatformarea; private string _isscore; private DateTime? _linepatroldate; private string _lineisscore; private string _faultisscore; private string _climbrodisscore; private string _enclosureisscore; private string _fusiblecoreisscore; private DateTime? _handledate; private string _workordercontent; private string _backgroundinformation; private string _incominglinemodellength; private string _outgoinglinemodellength; private string _status; private string _examinationlink; private DateTime? _createtime; 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 DateTime? _updatetime; private string _r1; private string _r2; private string _r3; /// /// /// public string UserExamId { set { _userexamid = value; } get { return _userexamid; } } /// /// /// public string UserId { set { _userid = value; } get { return _userid; } } /// /// /// 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 RestoreSceneMsg { set { _restorescenemsg = value; } get { return _restorescenemsg; } } /// /// /// public string SceneId { set { _sceneid = value; } get { return _sceneid; } } /// /// /// public string SceneName { set { _scenename = value; } get { return _scenename; } } /// /// /// public string PlatformAreaId { set { _platformareaid = value; } get { return _platformareaid; } } /// /// /// public string PlatformAreaName { set { _platformareaname = value; } get { return _platformareaname; } } /// /// /// public string LineId { set { _lineid = value; } get { return _lineid; } } /// /// /// public string LineName { set { _linename = value; } get { return _linename; } } /// /// /// public string SelectPlatformArea { set { _selectplatformarea = value; } get { return _selectplatformarea; } } /// /// /// public string IsScore { set { _isscore = value; } get { return _isscore; } } /// /// /// public DateTime? LinePatrolDate { set { _linepatroldate = value; } get { return _linepatroldate; } } /// /// /// public string LineIsScore { set { _lineisscore = value; } get { return _lineisscore; } } /// /// /// public string FaultIsScore { set { _faultisscore = value; } get { return _faultisscore; } } /// /// /// public string ClimbrodIsScore { set { _climbrodisscore = value; } get { return _climbrodisscore; } } /// /// /// public string EnclosureIsScore { set { _enclosureisscore = value; } get { return _enclosureisscore; } } /// /// /// public string FusibleCoreIsScore { set { _fusiblecoreisscore = value; } get { return _fusiblecoreisscore; } } /// /// /// 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 Status { set { _status = value; } get { return _status; } } /// /// /// public string ExaminationLink { set { _examinationlink = value; } get { return _examinationlink; } } /// /// /// public DateTime? CreateTime { set { _createtime = value; } get { return _createtime; } } /// /// /// 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 DateTime? UpdateTime { set { _updatetime = value; } get { return _updatetime; } } /// /// /// 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; } } #endregion Model } }