D_X0018_ROWS_RECODE.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 上链数量信息获取->获取的数据
  9. */
  10. public class D_X0018_ROWS_RECODE extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. long total;//可用总数量
  13. /**
  14. *可用总数量
  15. */
  16. public void setTotal(long total) {
  17. this.total=total;
  18. }
  19. /**
  20. *可用总数量
  21. */
  22. public long getTotal() {
  23. return this.total;
  24. }
  25. long used;//已用数量
  26. /**
  27. *已用数量
  28. */
  29. public void setUsed(long used) {
  30. this.used=used;
  31. }
  32. /**
  33. *已用数量
  34. */
  35. public long getUsed() {
  36. return this.used;
  37. }
  38. String name;//企业名字
  39. /**
  40. *企业名字
  41. */
  42. public void setName(String name) {
  43. this.name=name;
  44. }
  45. /**
  46. *企业名字
  47. */
  48. public String getName() {
  49. return this.name;
  50. }
  51. String platformid;//平台id
  52. /**
  53. *平台id
  54. */
  55. public void setPlatformid(String platformid) {
  56. this.platformid=platformid;
  57. }
  58. /**
  59. *平台id
  60. */
  61. public String getPlatformid() {
  62. return this.platformid;
  63. }
  64. String account;//关联账户
  65. /**
  66. *关联账户
  67. */
  68. public void setAccount(String account) {
  69. this.account=account;
  70. }
  71. /**
  72. *关联账户
  73. */
  74. public String getAccount() {
  75. return this.account;
  76. }
  77. String id;//唯一id
  78. /**
  79. *唯一id
  80. */
  81. public void setId(String id) {
  82. this.id=id;
  83. }
  84. /**
  85. *唯一id
  86. */
  87. public String getId() {
  88. return this.id;
  89. }
  90. }