周口郸城医院 DanChengCallCenter_API

NewsMassge.cs 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 NewsMassge
  10. {
  11. public NewsMassge()
  12. { }
  13. #region Model
  14. private int _id;
  15. private string _title;
  16. private string _contents;
  17. private string _fabu;
  18. private string _name;
  19. private DateTime? _date;
  20. private DateTime? _update;
  21. public int Id
  22. {
  23. set { _id = value; }
  24. get { return _id; }
  25. }
  26. public string Title
  27. {
  28. set { _title = value; }
  29. get { return _title; }
  30. }
  31. public string Contents
  32. {
  33. set { _contents = value; }
  34. get { return _contents; }
  35. }
  36. public string FabuCode
  37. {
  38. set { _fabu = value; }
  39. get { return _fabu; }
  40. }
  41. public string FabuName
  42. {
  43. set { _name = value; }
  44. get { return _name; }
  45. }
  46. public DateTime? FabuDate
  47. {
  48. set { _date = value; }
  49. get { return _date; }
  50. }
  51. public DateTime? UpdateTime
  52. {
  53. set { _update = value; }
  54. get { return _update; }
  55. }
  56. #endregion
  57. }
  58. }