📄 reportpagedatamodel.java
字号:
package com.gs.pageBuilder.model;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/
public class ReportPageDataModel implements java.io.Serializable{
String code; //报表编号
String reportCode;//报表编号
String pageCode;//页面编号
String content; //内容
String tableRow;//行号
String tableCol;//列号
String rowColEndPoint;//是否行结束
/**
* Returns the code.
* @return String
*/
public String getCode() {
return code;
}
/**
* Returns the content.
* @return String
*/
public String getContent() {
return content;
}
/**
* Returns the pageCode.
* @return String
*/
public String getPageCode() {
return pageCode;
}
/**
* Returns the reportCode.
* @return String
*/
public String getReportCode() {
return reportCode;
}
/**
* Returns the rowColEndPoint.
* @return String
*/
public String getRowColEndPoint() {
return rowColEndPoint;
}
/**
* Returns the tableCol.
* @return String
*/
public String getTableCol() {
return tableCol;
}
/**
* Returns the tableRow.
* @return String
*/
public String getTableRow() {
return tableRow;
}
/**
* Sets the code.
* @param code The code to set
*/
public void setCode(String code) {
this.code = code;
}
/**
* Sets the content.
* @param content The content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* Sets the pageCode.
* @param pageCode The pageCode to set
*/
public void setPageCode(String pageCode) {
this.pageCode = pageCode;
}
/**
* Sets the reportCode.
* @param reportCode The reportCode to set
*/
public void setReportCode(String reportCode) {
this.reportCode = reportCode;
}
/**
* Sets the rowColEndPoint.
* @param rowColEndPoint The rowColEndPoint to set
*/
public void setRowColEndPoint(String rowColEndPoint) {
this.rowColEndPoint = rowColEndPoint;
}
/**
* Sets the tableCol.
* @param tableCol The tableCol to set
*/
public void setTableCol(String tableCol) {
this.tableCol = tableCol;
}
/**
* Sets the tableRow.
* @param tableRow The tableRow to set
*/
public void setTableRow(String tableRow) {
this.tableRow = tableRow;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -