Source/UBCS/ubcs-service-api/ubcs-util-api/src/main/java/com/vci/ubcs/starter/bo/WriteExcelData.java
@@ -6,6 +6,7 @@
   private int row;
   private int col;
   private Object obj;
   private String objCode;
   private boolean merged = false;
   private int rowTo;
   private int colTo;
@@ -23,6 +24,14 @@
   private String dateFormat;
   private boolean readOnly;
   private Integer width;
   public String getObjCode() {
      return objCode;
   }
   public void setObjCode(String objCode) {
      this.objCode = objCode;
   }
   public String getFontColor() {
      return this.fontColor;
@@ -57,6 +66,21 @@
      this.obj = obj;
   }
   public WriteExcelData(int row, int col, Object obj,String objCode) {
      this.row = row;
      this.col = col;
      this.obj = obj;
      this.objCode = objCode;
   }
   public WriteExcelData(int row, int col, Object obj,String objCode,boolean copyStyle) {
      this.row = row;
      this.col = col;
      this.obj = obj;
      this.objCode = objCode;
      this.copyStyle = copyStyle;
   }
   public void writeFormula(int row, int col, String foumula) {
      this.row = row;
      this.col = col;