No Description

T_Cus_Customerrecords.cs 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CallCenterApi.Model
  6. {
  7. [Serializable]
  8. public partial class T_Cus_Customerrecords
  9. {
  10. public T_Cus_Customerrecords()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_cuscode;
  15. private string _f_cuscodeuuid;
  16. private DateTime? _f_addtime;
  17. private int? _f_type;
  18. /// <summary>
  19. /// id,自增
  20. /// </summary>
  21. public int F_Id
  22. {
  23. set { _f_id = value; }
  24. get { return _f_id; }
  25. }
  26. /// <summary>
  27. /// 工单流水号
  28. /// </summary>
  29. public string F_Cuscode
  30. {
  31. set { _f_cuscode = value; }
  32. get { return _f_cuscode; }
  33. }
  34. /// <summary>
  35. /// 政府服务网工单流水号
  36. /// </summary>
  37. public string F_Cuscodeuuid
  38. {
  39. set { _f_cuscodeuuid = value; }
  40. get { return _f_cuscodeuuid; }
  41. }
  42. /// <summary>
  43. /// 添加时间
  44. /// </summary>
  45. public DateTime? F_AddTime
  46. {
  47. set { _f_addtime = value; }
  48. get { return _f_addtime; }
  49. }
  50. public int ? F_Type
  51. {
  52. set { _f_type = value; }
  53. get { return _f_type; }
  54. }
  55. #endregion Model
  56. }
  57. }