sup_PushPaidBackMsg.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class sup_PushPaidBackMsg
  8. {
  9. private string _refid;
  10. private string _attachid;
  11. private string _pictypeid;
  12. private string _picname;
  13. private string _entid;
  14. private string _k_onlyid;
  15. private string _k_contactid;
  16. private string _salemanid;
  17. private decimal _jiesje;
  18. private int _rebillno;
  19. private List<PurOrderDTEx> orderdts;
  20. public sup_PushPaidBackMsg()
  21. {
  22. }
  23. public string REFID
  24. {
  25. get { return _refid; }
  26. set { _refid = value; }
  27. }
  28. public string ATTACHID
  29. {
  30. get { return _attachid; }
  31. set { _attachid = value; }
  32. }
  33. public string PICTYPEID
  34. {
  35. get { return _pictypeid; }
  36. set { _pictypeid = value; }
  37. }
  38. public string PICNAME
  39. {
  40. get { return _picname; }
  41. set { _picname = value; }
  42. }
  43. public string ENTID
  44. {
  45. get { return _entid; }
  46. set { _entid = value; }
  47. }
  48. public string K_OnlyId
  49. {
  50. get { return _k_onlyid; }
  51. set { _k_onlyid = value; }
  52. }
  53. public string K_ContactId
  54. {
  55. get { return _k_contactid; }
  56. set { _k_contactid = value; }
  57. }
  58. public string SaleManId
  59. {
  60. get { return _salemanid; }
  61. set { _salemanid = value; }
  62. }
  63. public decimal JieSJE
  64. {
  65. get { return _jiesje; }
  66. set { _jiesje = value; }
  67. }
  68. public int ReBillNo
  69. {
  70. get { return _rebillno; }
  71. set { _rebillno = value; }
  72. }
  73. public List<PurOrderDTEx> Orderdts { get => orderdts; set => orderdts = value; }
  74. }
  75. }