| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HySoft.BaseCallCenter.Model
- {
- /// <summary>
- /// T_Call_ReasonRecord:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Call_ReasonRecord
- {
- public T_Call_ReasonRecord()
- { }
- #region Model
- private int _f_callreasonid;
- private int? _f_callid;
- private string _f_telphone;
- private string _f_lids;
- private string _f_lnames;
- private int? _f_ltype;
- private string _f_remark;
- private DateTime? _f_creattime;
- private string _f_creatbyid;
- private string _f_creatbycode;
- private string _f_creatbyname;
- private int? _f_deleteflag;
- /// <summary>
- /// ID
- /// </summary>
- public int F_CallReasonID
- {
- set { _f_callreasonid = value; }
- get { return _f_callreasonid; }
- }
- /// <summary>
- /// 来电ID
- /// </summary>
- public int? F_CallID
- {
- set { _f_callid = value; }
- get { return _f_callid; }
- }
- /// <summary>
- /// 来电号码
- /// </summary>
- public string F_TelPhone
- {
- set { _f_telphone = value; }
- get { return _f_telphone; }
- }
- /// <summary>
- /// 原因IDs
- /// </summary>
- public string F_LIDS
- {
- set { _f_lids = value; }
- get { return _f_lids; }
- }
- /// <summary>
- /// 原因总汇
- /// </summary>
- public string F_LNameS
- {
- set { _f_lnames = value; }
- get { return _f_lnames; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string F_Remark
- {
- set { _f_remark = value; }
- get { return _f_remark; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime? F_CreatTime
- {
- set { _f_creattime = value; }
- get { return _f_creattime; }
- }
- /// <summary>
- /// 创建人ID
- /// </summary>
- public string F_CreatByID
- {
- set { _f_creatbyid = value; }
- get { return _f_creatbyid; }
- }
- /// <summary>
- /// 工号
- /// </summary>
- public string F_CreatByCode
- {
- set { _f_creatbycode = value; }
- get { return _f_creatbycode; }
- }
- /// <summary>
- /// 姓名
- /// </summary>
- public string F_CreatByName
- {
- set { _f_creatbyname = value; }
- get { return _f_creatbyname; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_DeleteFlag
- {
- set { _f_deleteflag = value; }
- get { return _f_deleteflag; }
- }
- /// <summary>
- /// 原因类型:1咨询,2临时,3招商
- /// </summary>
- public int? F_LType
- {
- get
- {
- return _f_ltype;
- }
- set
- {
- _f_ltype = value;
- }
- }
- #endregion Model
- }
- }
|