123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- import java.util.*;
- /**
- * 获取统计信息
- */
- public class D_C00005 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String totalUploadFile;//总上传文件数
- /**
- *总上传文件数
- */
- public void setTotalUploadFile(String totalUploadFile) {
- this.totalUploadFile=totalUploadFile;
- }
- /**
- *总上传文件数
- */
- public String getTotalUploadFile() {
- return this.totalUploadFile;
- }
- String totalProject;//总项目数
- /**
- *总项目数
- */
- public void setTotalProject(String totalProject) {
- this.totalProject=totalProject;
- }
- /**
- *总项目数
- */
- public String getTotalProject() {
- return this.totalProject;
- }
- String user;//注册用户数
- /**
- *注册用户数
- */
- public void setUser(String user) {
- this.user=user;
- }
- /**
- *注册用户数
- */
- public String getUser() {
- return this.user;
- }
- String activeUser;//当前活跃用户数
- /**
- *当前活跃用户数
- */
- public void setActiveUser(String activeUser) {
- this.activeUser=activeUser;
- }
- /**
- *当前活跃用户数
- */
- public String getActiveUser() {
- return this.activeUser;
- }
- String totalNotary;//总申请公证数
- /**
- *总申请公证数
- */
- public void setTotalNotary(String totalNotary) {
- this.totalNotary=totalNotary;
- }
- /**
- *总申请公证数
- */
- public String getTotalNotary() {
- return this.totalNotary;
- }
- String totalUpChain;//总上链数
- /**
- *总上链数
- */
- public void setTotalUpChain(String totalUpChain) {
- this.totalUpChain=totalUpChain;
- }
- /**
- *总上链数
- */
- public String getTotalUpChain() {
- return this.totalUpChain;
- }
- List <D_C00005_FILELIST_RECODE> fileList;//最新项目文件
- /**
- *最新项目文件
- */
- public void setFileList(List <D_C00005_FILELIST_RECODE> fileList) {
- this.fileList=fileList;
- }
- /**
- *最新项目文件
- */
- public List <D_C00005_FILELIST_RECODE> getFileList() {
- return this.fileList;
- }
- List <D_C00005_UPCHAINTREND_RECODE> upchainTrend;//上链走势
- /**
- *上链走势
- */
- public void setUpchainTrend(List <D_C00005_UPCHAINTREND_RECODE> upchainTrend) {
- this.upchainTrend=upchainTrend;
- }
- /**
- *上链走势
- */
- public List <D_C00005_UPCHAINTREND_RECODE> getUpchainTrend() {
- return this.upchainTrend;
- }
- List <D_C00005_UPCHAININFO_RECODE> upchainInfo;//上链信息
- /**
- *上链信息
- */
- public void setUpchainInfo(List <D_C00005_UPCHAININFO_RECODE> upchainInfo) {
- this.upchainInfo=upchainInfo;
- }
- /**
- *上链信息
- */
- public List <D_C00005_UPCHAININFO_RECODE> getUpchainInfo() {
- return this.upchainInfo;
- }
- List <D_C00005_FILEMEDIA_RECODE> fileMedia;//文件来源
- /**
- *文件来源
- */
- public void setFileMedia(List <D_C00005_FILEMEDIA_RECODE> fileMedia) {
- this.fileMedia=fileMedia;
- }
- /**
- *文件来源
- */
- public List <D_C00005_FILEMEDIA_RECODE> getFileMedia() {
- return this.fileMedia;
- }
- List <D_C00005_FILETYPE_RECODE> fileType;//文件类型
- /**
- *文件类型
- */
- public void setFileType(List <D_C00005_FILETYPE_RECODE> fileType) {
- this.fileType=fileType;
- }
- /**
- *文件类型
- */
- public List <D_C00005_FILETYPE_RECODE> getFileType() {
- return this.fileType;
- }
- }
|