Нет описания

T_SMS_Receive.cs 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. /// <summary>
  9. /// 短信接收表
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_SMS_Receive
  13. {
  14. /// <summary>
  15. /// ID
  16. /// </summary>
  17. private int _id;
  18. public int ID
  19. {
  20. get { return _id; }
  21. set { _id = value; }
  22. }
  23. /// <summary>
  24. /// Telephone
  25. /// </summary>
  26. private string _telephone;
  27. public string Telephone
  28. {
  29. get { return _telephone; }
  30. set { _telephone = value; }
  31. }
  32. /// <summary>
  33. /// Detail
  34. /// </summary>
  35. private string _detail;
  36. public string Detail
  37. {
  38. get { return _detail; }
  39. set { _detail = value; }
  40. }
  41. /// <summary>
  42. /// State
  43. /// </summary>
  44. private int? _state;
  45. public int? State
  46. {
  47. get { return _state; }
  48. set { _state = value; }
  49. }
  50. /// <summary>
  51. /// CreateDate
  52. /// </summary>
  53. private DateTime? _createdate;
  54. public DateTime? CreateDate
  55. {
  56. get { return _createdate; }
  57. set { _createdate = value; }
  58. }
  59. }
  60. }