0bb65401bd874739fe95e8e01f8ed38f9d187785.svn-base 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package cn.com.goldenwater.dcproj.utils.export;
  2. public class Column implements java.io.Serializable {
  3. private String code;
  4. private String name;
  5. private String aboutcode; //相关字典
  6. private String type;//NUMBER VARCHAR2
  7. private int isabstract; //是否摘要
  8. private int isindex; //是否索引
  9. private int gridwidth;
  10. public String getCode() {
  11. return code;
  12. }
  13. public void setCode(String code) {
  14. this.code = code;
  15. }
  16. public String getName() {
  17. return name;
  18. }
  19. public void setName(String name) {
  20. this.name = name;
  21. }
  22. public String getAboutcode() {
  23. return aboutcode;
  24. }
  25. public void setAboutcode(String aboutcode) {
  26. this.aboutcode = aboutcode;
  27. }
  28. public String getType() {
  29. return type;
  30. }
  31. public void setType(String type) {
  32. this.type = type;
  33. }
  34. public int getGridwidth() {
  35. return gridwidth;
  36. }
  37. public void setGridwidth(int gridwidth) {
  38. this.gridwidth = gridwidth;
  39. }
  40. public int getIsabstract() {
  41. return isabstract;
  42. }
  43. public void setIsabstract(int isabstract) {
  44. this.isabstract = isabstract;
  45. }
  46. public int getIsindex() {
  47. return isindex;
  48. }
  49. public void setIsindex(int isindex) {
  50. this.isindex = isindex;
  51. }
  52. }