周口郸城医院 DanChengCallCenter_API

UserLeaveMes.cs 905B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [Serializable]
  9. public partial class UserLeaveMes
  10. {
  11. public UserLeaveMes()
  12. { }
  13. #region Model
  14. private int _id;
  15. private string _code;
  16. private string _contents;
  17. private DateTime? _date;
  18. public int Id
  19. {
  20. set { _id = value; }
  21. get { return _id; }
  22. }
  23. public string Code
  24. {
  25. set { _code = value; }
  26. get { return _code; }
  27. }
  28. public string Contents
  29. {
  30. set { _contents = value; }
  31. get { return _contents; }
  32. }
  33. public DateTime? CreateTime
  34. {
  35. set { _date = value; }
  36. get { return _date; }
  37. }
  38. #endregion
  39. }
  40. }