| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.model.bo;
- public class Screen {
- private String columnName;
- private String columnType;
- private String columnLabel;
- private String symbolLabel;
- private String symbol;
- private String value;
- public String getColumnLabel() {
- return columnLabel;
- }
- public void setColumnLabel(String columnLabel) {
- this.columnLabel = columnLabel;
- }
- public String getSymbolLabel() {
- return symbolLabel;
- }
- public void setSymbolLabel(String symbolLabel) {
- this.symbolLabel = symbolLabel;
- }
- public String getColumnName() {
- return columnName;
- }
- public void setColumnName(String columnName) {
- this.columnName = columnName;
- }
- public String getSymbol() {
- return symbol;
- }
- public void setSymbol(String symbol) {
- this.symbol = symbol;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public String getColumnType() {
- return columnType;
- }
- public void setColumnType(String columnType) {
- this.columnType = columnType;
- }
- }
|