package com.changhong.epc.parsing.service.model; public class ShowTable{ /** * 字段名称 */ private String colName; /** * 字段别名 */ private String colDesc; public ShowTable(String colName, String colDesc) { super(); this.colName = colName; this.colDesc = colDesc; } public String getColName() { return colName; } public void setColName(String colName) { this.colName = colName; } public String getColDesc() { return colDesc; } public void setColDesc(String colDesc) { this.colDesc = colDesc; } }