using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RuralPower.Model { /// /// pow_fault:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class pow_fault { public pow_fault() { } #region Model private string _faultid; private string _examid; private string _devicetype; private string _line; private string _position; private string _defecttype; private string _phase; private string _defectcategory; private string _remark1; private string _remark2; private string _remark3; private string _remark4; private string _remark5; /// /// /// public string FaultId { set { _faultid = value; } get { return _faultid; } } /// /// /// public string ExamId { set { _examid = value; } get { return _examid; } } /// /// /// public string DeviceType { set { _devicetype = value; } get { return _devicetype; } } /// /// /// public string Line { set { _line = value; } get { return _line; } } /// /// /// public string Position { set { _position = value; } get { return _position; } } /// /// /// public string DefectType { set { _defecttype = value; } get { return _defecttype; } } /// /// /// public string Phase { set { _phase = value; } get { return _phase; } } /// /// /// public string DefectCategory { set { _defectcategory = value; } get { return _defectcategory; } } /// /// /// public string Remark1 { set { _remark1 = value; } get { return _remark1; } } /// /// /// public string Remark2 { set { _remark2 = value; } get { return _remark2; } } /// /// /// public string Remark3 { set { _remark3 = value; } get { return _remark3; } } /// /// /// public string Remark4 { set { _remark4 = value; } get { return _remark4; } } /// /// /// public string Remark5 { set { _remark5 = value; } get { return _remark5; } } #endregion Model } }