D_C00005.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. import java.util.*;
  8. /**
  9. * 获取统计信息
  10. */
  11. public class D_C00005 extends BaseMapModel implements Serializable {
  12. private static final long serialVersionUID = -1463838678425832212L;
  13. String totalUploadFile;//总上传文件数
  14. /**
  15. *总上传文件数
  16. */
  17. public void setTotalUploadFile(String totalUploadFile) {
  18. this.totalUploadFile=totalUploadFile;
  19. }
  20. /**
  21. *总上传文件数
  22. */
  23. public String getTotalUploadFile() {
  24. return this.totalUploadFile;
  25. }
  26. String totalProject;//总项目数
  27. /**
  28. *总项目数
  29. */
  30. public void setTotalProject(String totalProject) {
  31. this.totalProject=totalProject;
  32. }
  33. /**
  34. *总项目数
  35. */
  36. public String getTotalProject() {
  37. return this.totalProject;
  38. }
  39. String user;//注册用户数
  40. /**
  41. *注册用户数
  42. */
  43. public void setUser(String user) {
  44. this.user=user;
  45. }
  46. /**
  47. *注册用户数
  48. */
  49. public String getUser() {
  50. return this.user;
  51. }
  52. String activeUser;//当前活跃用户数
  53. /**
  54. *当前活跃用户数
  55. */
  56. public void setActiveUser(String activeUser) {
  57. this.activeUser=activeUser;
  58. }
  59. /**
  60. *当前活跃用户数
  61. */
  62. public String getActiveUser() {
  63. return this.activeUser;
  64. }
  65. String totalNotary;//总申请公证数
  66. /**
  67. *总申请公证数
  68. */
  69. public void setTotalNotary(String totalNotary) {
  70. this.totalNotary=totalNotary;
  71. }
  72. /**
  73. *总申请公证数
  74. */
  75. public String getTotalNotary() {
  76. return this.totalNotary;
  77. }
  78. String totalUpChain;//总上链数
  79. /**
  80. *总上链数
  81. */
  82. public void setTotalUpChain(String totalUpChain) {
  83. this.totalUpChain=totalUpChain;
  84. }
  85. /**
  86. *总上链数
  87. */
  88. public String getTotalUpChain() {
  89. return this.totalUpChain;
  90. }
  91. List <D_C00005_FILELIST_RECODE> fileList;//最新项目文件
  92. /**
  93. *最新项目文件
  94. */
  95. public void setFileList(List <D_C00005_FILELIST_RECODE> fileList) {
  96. this.fileList=fileList;
  97. }
  98. /**
  99. *最新项目文件
  100. */
  101. public List <D_C00005_FILELIST_RECODE> getFileList() {
  102. return this.fileList;
  103. }
  104. List <D_C00005_UPCHAINTREND_RECODE> upchainTrend;//上链走势
  105. /**
  106. *上链走势
  107. */
  108. public void setUpchainTrend(List <D_C00005_UPCHAINTREND_RECODE> upchainTrend) {
  109. this.upchainTrend=upchainTrend;
  110. }
  111. /**
  112. *上链走势
  113. */
  114. public List <D_C00005_UPCHAINTREND_RECODE> getUpchainTrend() {
  115. return this.upchainTrend;
  116. }
  117. List <D_C00005_UPCHAININFO_RECODE> upchainInfo;//上链信息
  118. /**
  119. *上链信息
  120. */
  121. public void setUpchainInfo(List <D_C00005_UPCHAININFO_RECODE> upchainInfo) {
  122. this.upchainInfo=upchainInfo;
  123. }
  124. /**
  125. *上链信息
  126. */
  127. public List <D_C00005_UPCHAININFO_RECODE> getUpchainInfo() {
  128. return this.upchainInfo;
  129. }
  130. List <D_C00005_FILEMEDIA_RECODE> fileMedia;//文件来源
  131. /**
  132. *文件来源
  133. */
  134. public void setFileMedia(List <D_C00005_FILEMEDIA_RECODE> fileMedia) {
  135. this.fileMedia=fileMedia;
  136. }
  137. /**
  138. *文件来源
  139. */
  140. public List <D_C00005_FILEMEDIA_RECODE> getFileMedia() {
  141. return this.fileMedia;
  142. }
  143. List <D_C00005_FILETYPE_RECODE> fileType;//文件类型
  144. /**
  145. *文件类型
  146. */
  147. public void setFileType(List <D_C00005_FILETYPE_RECODE> fileType) {
  148. this.fileType=fileType;
  149. }
  150. /**
  151. *文件类型
  152. */
  153. public List <D_C00005_FILETYPE_RECODE> getFileType() {
  154. return this.fileType;
  155. }
  156. }