| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 登记记录表
- /// </summary>
- [Serializable]
- public partial class T_Rec_RegRecords
- {
- public T_Rec_RegRecords()
- { }
- #region Model
- private int _f_id;
- private string _f_reccode;
- private int _f_cusid;
- private int? _f_type;
- private int? _f_direction;
- private string _f_complained;
- private string _f_content;
- private string _f_remark;
- private string _f_createby;
- private DateTime? _f_createon;
- private int? _f_isdelete;
- private string _f_deleteon;
- private DateTime? _f_deleteby;
- private string _f_tel;
- private string _f_callid;
- /// <summary>
- ///
- /// </summary>
- public int F_ID
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
-
- public string F_CallId
- {
- set { _f_callid = value; }
- get { return _f_callid; }
- }
- public string F_Tel
- {
- set { _f_tel = value; }
- get { return _f_tel; }
- }
- /// <summary>
- /// 登记编号
- /// </summary>
- public string F_RecCode
- {
- set { _f_reccode = value; }
- get { return _f_reccode; }
- }
- /// <summary>
- /// 档案id
- /// </summary>
- public int F_CusID
- {
- set { _f_cusid = value; }
- get { return _f_cusid; }
- }
- /// <summary>
- /// 登记类型
- /// </summary>
- public int? F_Type
- {
- set { _f_type = value; }
- get { return _f_type; }
- }
- /// <summary>
- /// 方向:0来电,1去电
- /// </summary>
- public int? F_Direction
- {
- set { _f_direction = value; }
- get { return _f_direction; }
- }
- /// <summary>
- /// 被投诉单位
- /// </summary>
- public string F_Complained
- {
- set { _f_complained = value; }
- get { return _f_complained; }
- }
- /// <summary>
- /// 登记内容/投诉事项
- /// </summary>
- public string F_Content
- {
- set { _f_content = value; }
- get { return _f_content; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string F_Remark
- {
- set { _f_remark = value; }
- get { return _f_remark; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CreateBy
- {
- set { _f_createby = value; }
- get { return _f_createby; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateOn
- {
- set { _f_createon = value; }
- get { return _f_createon; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DeleteOn
- {
- set { _f_deleteon = value; }
- get { return _f_deleteon; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_DeleteBy
- {
- set { _f_deleteby = value; }
- get { return _f_deleteby; }
- }
-
- #endregion Model
- }
- }
|