A_XB0053.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 区块链服务
  3. */
  4. package com.miniframe.generate.comm.blockservice;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 平台可用上链数量设置
  9. */
  10. public class A_XB0053 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String platformId;//平台ID
  13. /**
  14. *平台ID
  15. */
  16. public void setPlatformId(String platformId) {
  17. this.platformId=platformId;
  18. }
  19. /**
  20. *平台ID
  21. */
  22. public String getPlatformId() {
  23. return this.platformId;
  24. }
  25. long totalCnt;//总数量
  26. /**
  27. *总数量
  28. */
  29. public void setTotalCnt(long totalCnt) {
  30. this.totalCnt=totalCnt;
  31. }
  32. /**
  33. *总数量
  34. */
  35. public long getTotalCnt() {
  36. return this.totalCnt;
  37. }
  38. String setTime;//设置时间
  39. /**
  40. *设置时间
  41. */
  42. public void setSetTime(String setTime) {
  43. this.setTime=setTime;
  44. }
  45. /**
  46. *设置时间
  47. */
  48. public String getSetTime() {
  49. return this.setTime;
  50. }
  51. String verify;//校验值
  52. /**
  53. *校验值
  54. */
  55. public void setVerify(String verify) {
  56. this.verify=verify;
  57. }
  58. /**
  59. *校验值
  60. */
  61. public String getVerify() {
  62. return this.verify;
  63. }
  64. }