PingAnYeXianSZCG_API 接口代码

T_Vis_Telphone_Mark.cs 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. public partial class T_Vis_Telphone_Mark
  9. {
  10. public T_Vis_Telphone_Mark()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_cusname;
  15. private string _f_custelphone;
  16. private string _f_cusphone;
  17. private DateTime? _f_createdate;
  18. private string _f_note;
  19. /// <summary>
  20. /// ID
  21. /// </summary>
  22. public int F_ID
  23. {
  24. set { _f_id = value; }
  25. get { return _f_id; }
  26. }
  27. /// <summary>
  28. /// 姓名
  29. /// </summary>
  30. public string F_CusName
  31. {
  32. set { _f_cusname = value; }
  33. get { return _f_cusname; }
  34. }
  35. /// <summary>
  36. /// 手机
  37. /// </summary>
  38. public string F_CusTelphone
  39. {
  40. set { _f_custelphone = value; }
  41. get { return _f_custelphone; }
  42. }
  43. /// <summary>
  44. /// 电话
  45. /// </summary>
  46. public string F_CusPhone
  47. {
  48. set { _f_cusphone = value; }
  49. get { return _f_cusphone; }
  50. }
  51. /// <summary>
  52. /// 添加时间
  53. /// </summary>
  54. public DateTime? F_CreateDate
  55. {
  56. set { _f_createdate = value; }
  57. get { return _f_createdate; }
  58. }
  59. /// <summary>
  60. /// 备注
  61. /// </summary>
  62. public string F_Note
  63. {
  64. set { _f_note = value; }
  65. get { return _f_note; }
  66. }
  67. #endregion Model
  68. }
  69. }