PushConfirmRecord.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class PushConfirmRecord
  8. {
  9. private Guid _pushrecordid;
  10. private Guid _pushfeedbackid;
  11. private DateTime _confirmtime;
  12. private Guid _id;
  13. private int _status;
  14. private int _confirmperson;
  15. public PushConfirmRecord()
  16. {
  17. }
  18. public Guid PushRecordId
  19. {
  20. get { return _pushrecordid; }
  21. set { _pushrecordid = value; }
  22. }
  23. public Guid PushFeedbackId
  24. {
  25. get { return _pushfeedbackid; }
  26. set { _pushfeedbackid = value; }
  27. }
  28. public DateTime ConfirmTime
  29. {
  30. get { return _confirmtime; }
  31. set { _confirmtime = value; }
  32. }
  33. public Guid Id
  34. {
  35. get { return _id; }
  36. set { _id = value; }
  37. }
  38. public int Status
  39. {
  40. get { return _status; }
  41. set { _status = value; }
  42. }
  43. public int ConfirmPerson
  44. {
  45. get { return _confirmperson; }
  46. set { _confirmperson = value; }
  47. }
  48. }
  49. }