Logo

GitLab

Sign in

曹亮 / poi-demo

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • poi-demo
  • ..
  • inter
  • IExcelModel.java
  • update
    73aee3fa
    曹亮 authored
    2017-11-14 18:49:13 +0800  
    Browse Dir »
IExcelModel.java 356 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.bckefu.excel.handler.inter;

/**
 * @author : caoliang
 * @date : 2017/11/14  下午3:22
 */
public interface IExcelModel {

    /**
     * 获取错误数据
     *
     * @return
     */
    public String getErrorMsg();

    /**
     * 设置错误信息
     *
     * @param errorMsg
     */
    public void setErrorMsg(String errorMsg);

}