123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 上链信息导出excel
- */
- public class A_X0017 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String startTime;//开始时间
- /**
- *开始时间
- */
- public void setStartTime(String startTime) {
- this.startTime=startTime;
- }
- /**
- *开始时间
- */
- public String getStartTime() {
- return this.startTime;
- }
- String endTime;//结束时间
- /**
- *结束时间
- */
- public void setEndTime(String endTime) {
- this.endTime=endTime;
- }
- /**
- *结束时间
- */
- public String getEndTime() {
- return this.endTime;
- }
- String type;//类型
- /**
- *类型
- */
- public void setType(String type) {
- this.type=type;
- }
- /**
- *类型
- */
- public String getType() {
- return this.type;
- }
- String platformId;//平台id
- /**
- *平台id
- */
- public void setPlatformId(String platformId) {
- this.platformId=platformId;
- }
- /**
- *平台id
- */
- public String getPlatformId() {
- return this.platformId;
- }
- String title;//标题
- /**
- *标题
- */
- public void setTitle(String title) {
- this.title=title;
- }
- /**
- *标题
- */
- public String getTitle() {
- return this.title;
- }
- String columnfields;//列id
- /**
- *列id
- */
- public void setColumnfields(String columnfields) {
- this.columnfields=columnfields;
- }
- /**
- *列id
- */
- public String getColumnfields() {
- return this.columnfields;
- }
- String columntitles;//列标题
- /**
- *列标题
- */
- public void setColumntitles(String columntitles) {
- this.columntitles=columntitles;
- }
- /**
- *列标题
- */
- public String getColumntitles() {
- return this.columntitles;
- }
- int startPage;//起始页数
- /**
- *起始页数
- */
- public void setStartPage(int startPage) {
- this.startPage=startPage;
- }
- /**
- *起始页数
- */
- public int getStartPage() {
- return this.startPage;
- }
- int pageSize;//每页行数
- /**
- *每页行数
- */
- public void setPageSize(int pageSize) {
- this.pageSize=pageSize;
- }
- /**
- *每页行数
- */
- public int getPageSize() {
- return this.pageSize;
- }
- }
|