| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 已回访工单表 - 不用
- /// </summary>
- public partial class T_Wo_WorkOrder_Que_Map
- {
- public T_Wo_WorkOrder_Que_Map()
- { }
- #region Model
- private long _id;
- private string _workorderid;
- private int? _isvisit;
- private int? _isdelete;
- private int? _callresultid;
- private string _createby;
- private DateTime? _createtime;
- private string _remark;
- /// <summary>
- /// Id
- /// </summary>
- public long Id
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- /// 工单号
- /// </summary>
- public string WorkOrderId
- {
- set { _workorderid = value; }
- get { return _workorderid; }
- }
- /// <summary>
- /// 是否回访
- /// </summary>
- public int? IsVisit
- {
- set { _isvisit = value; }
- get { return _isvisit; }
- }
- /// <summary>
- /// 回访结果id
- /// </summary>
- public int? CallResultId
- {
- set { _callresultid = value; }
- get { return _callresultid; }
- }
- /// <summary>
- /// 是否删除
- /// </summary>
- public int? IsDelete
- {
- set { _isdelete = value; }
- get { return _isdelete; }
- }
- /// <summary>
- ///
- /// </summary>
- public string CreateBy
- {
- set { _createby = value; }
- get { return _createby; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? CreateTime
- {
- set { _createtime = value; }
- get { return _createtime; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- set { _remark = value; }
- get { return _remark; }
- }
- #endregion Model
- }
- }
|