| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package cn.com.goldenwater.dcproj.utils.export;
- public class Column implements java.io.Serializable {
- private String code;
- private String name;
- private String aboutcode; //相关字典
- private String type;//NUMBER VARCHAR2
- private int isabstract; //是否摘要
- private int isindex; //是否索引
- private int gridwidth;
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getAboutcode() {
- return aboutcode;
- }
- public void setAboutcode(String aboutcode) {
- this.aboutcode = aboutcode;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public int getGridwidth() {
- return gridwidth;
- }
- public void setGridwidth(int gridwidth) {
- this.gridwidth = gridwidth;
- }
- public int getIsabstract() {
- return isabstract;
- }
- public void setIsabstract(int isabstract) {
- this.isabstract = isabstract;
- }
- public int getIsindex() {
- return isindex;
- }
- public void setIsindex(int isindex) {
- this.isindex = isindex;
- }
- }
|