| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public partial class T_Vis_Telphone_Mark
- {
- public T_Vis_Telphone_Mark()
- { }
- #region Model
- private int _f_id;
- private string _f_cusname;
- private string _f_custelphone;
- private string _f_cusphone;
- private DateTime? _f_createdate;
- private string _f_note;
- /// <summary>
- /// ID
- /// </summary>
- public int F_ID
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 姓名
- /// </summary>
- public string F_CusName
- {
- set { _f_cusname = value; }
- get { return _f_cusname; }
- }
- /// <summary>
- /// 手机
- /// </summary>
- public string F_CusTelphone
- {
- set { _f_custelphone = value; }
- get { return _f_custelphone; }
- }
- /// <summary>
- /// 电话
- /// </summary>
- public string F_CusPhone
- {
- set { _f_cusphone = value; }
- get { return _f_cusphone; }
- }
- /// <summary>
- /// 添加时间
- /// </summary>
- public DateTime? F_CreateDate
- {
- set { _f_createdate = value; }
- get { return _f_createdate; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string F_Note
- {
- set { _f_note = value; }
- get { return _f_note; }
- }
- #endregion Model
- }
- }
|