using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RuralPower.Model { /// /// pow_operation_ticket:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class pow_operation_ticket { public pow_operation_ticket() { } #region Model private string _operationticketid; private string _examid; private string _type; private int _serialnumber; private string _content; private string _remark1; private string _remark2; private string _remark3; private string _remark4; private string _remark5; /// /// /// public string OperationTicketId { set { _operationticketid = value; } get { return _operationticketid; } } /// /// /// public string ExamId { set { _examid = value; } get { return _examid; } } /// /// /// public string Type { set { _type = value; } get { return _type; } } /// /// /// public int SerialNumber { set { _serialnumber = value; } get { return _serialnumber; } } /// /// /// public string Content { set { _content = value; } get { return _content; } } /// /// /// 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 } }