| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Wo_WorkOrderTimeOut:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Wo_WorkOrderTimeOut
- {
- public T_Wo_WorkOrderTimeOut()
- { }
- #region Model
- private int _id;
- private int? _type;
- private decimal? _maintime;
- private decimal? _itemtime;
- private int? _state;
- private string _remark;
- private string _createuser;
- private DateTime? _createtime;
- /// <summary>
- /// 序号
- /// </summary>
- public int ID
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- /// 工单类型
- /// </summary>
- public int? Type
- {
- set { _type = value; }
- get { return _type; }
- }
- /// <summary>
- /// 主任务超时时间
- /// </summary>
- public decimal? MainTime
- {
- set { _maintime = value; }
- get { return _maintime; }
- }
- /// <summary>
- /// 子任务超时时间
- /// </summary>
- public decimal? ItemTime
- {
- set { _itemtime = value; }
- get { return _itemtime; }
- }
- /// <summary>
- /// 状态
- /// </summary>
- public int? State
- {
- set { _state = value; }
- get { return _state; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- set { _remark = value; }
- get { return _remark; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- public string CreateUser
- {
- set { _createuser = value; }
- get { return _createuser; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime? CreateTime
- {
- set { _createtime = value; }
- get { return _createtime; }
- }
- #endregion Model
- }
- }
|