SysExportRecord.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. package com.miniframe.system.model;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. /**
  5. * 导出记录表 : 导出记录表
  6. * @generated
  7. */
  8. public class SysExportRecord extends MiniserviceBaseModel implements Serializable {
  9. /**
  10. * id,id,VARCHAR(64),ISNULL: N
  11. * @generated
  12. */
  13. private String id;
  14. /**
  15. * starttime,开始时间,VARCHAR(64),ISNULL: N
  16. * @generated
  17. */
  18. private String starttime;
  19. /**
  20. * optime,optime,VARCHAR(64),ISNULL: N
  21. * @generated
  22. */
  23. private String optime;
  24. /**
  25. * platformid,平台id,VARCHAR(256),ISNULL: N
  26. * @generated
  27. */
  28. private String platformid;
  29. /**
  30. * nums,导出数量,INTEGER(10),ISNULL: Y
  31. * @generated
  32. */
  33. private Integer nums;
  34. /**
  35. * endtime,结束时间 ,VARCHAR(64),ISNULL: Y
  36. * @generated
  37. */
  38. private String endtime;
  39. /**
  40. * remarks,备注 ,VARCHAR(1024),ISNULL: Y
  41. * @generated
  42. */
  43. private String remarks;
  44. /**
  45. * 导出记录表 : 导出记录表
  46. * @generated
  47. */
  48. private static final long serialVersionUID = -4775428405133597247L;
  49. /**
  50. * @return id,id,VARCHAR(64),ISNULL: N
  51. * @generated
  52. */
  53. public String getId() {
  54. return id;
  55. }
  56. /**
  57. * @param id,id,id,VARCHAR(64),ISNULL: N
  58. * @generated
  59. */
  60. public void setId(String id) {
  61. this.id = id == null ? null : id.trim();
  62. }
  63. /**
  64. * @return starttime,开始时间,VARCHAR(64),ISNULL: N
  65. * @generated
  66. */
  67. public String getStarttime() {
  68. return starttime;
  69. }
  70. /**
  71. * @param starttime,starttime,开始时间,VARCHAR(64),ISNULL: N
  72. * @generated
  73. */
  74. public void setStarttime(String starttime) {
  75. this.starttime = starttime == null ? null : starttime.trim();
  76. }
  77. /**
  78. * @return optime,optime,VARCHAR(64),ISNULL: N
  79. * @generated
  80. */
  81. public String getOptime() {
  82. return optime;
  83. }
  84. /**
  85. * @param optime,optime,optime,VARCHAR(64),ISNULL: N
  86. * @generated
  87. */
  88. public void setOptime(String optime) {
  89. this.optime = optime == null ? null : optime.trim();
  90. }
  91. /**
  92. * @return platformid,平台id,VARCHAR(256),ISNULL: N
  93. * @generated
  94. */
  95. public String getPlatformid() {
  96. return platformid;
  97. }
  98. /**
  99. * @param platformid,platformid,平台id,VARCHAR(256),ISNULL: N
  100. * @generated
  101. */
  102. public void setPlatformid(String platformid) {
  103. this.platformid = platformid == null ? null : platformid.trim();
  104. }
  105. /**
  106. * @return nums,导出数量,INTEGER(10),ISNULL: Y
  107. * @generated
  108. */
  109. public Integer getNums() {
  110. return nums;
  111. }
  112. /**
  113. * @param nums,nums,导出数量,INTEGER(10),ISNULL: Y
  114. * @generated
  115. */
  116. public void setNums(Integer nums) {
  117. this.nums = nums;
  118. }
  119. /**
  120. * @return endtime,结束时间 ,VARCHAR(64),ISNULL: Y
  121. * @generated
  122. */
  123. public String getEndtime() {
  124. return endtime;
  125. }
  126. /**
  127. * @param endtime,endtime,结束时间 ,VARCHAR(64),ISNULL: Y
  128. * @generated
  129. */
  130. public void setEndtime(String endtime) {
  131. this.endtime = endtime == null ? null : endtime.trim();
  132. }
  133. /**
  134. * @return remarks,备注 ,VARCHAR(1024),ISNULL: Y
  135. * @generated
  136. */
  137. public String getRemarks() {
  138. return remarks;
  139. }
  140. /**
  141. * @param remarks,remarks,备注 ,VARCHAR(1024),ISNULL: Y
  142. * @generated
  143. */
  144. public void setRemarks(String remarks) {
  145. this.remarks = remarks == null ? null : remarks.trim();
  146. }
  147. }