All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zhongweixian.excel.entity.result.ExcelVerifyHanlderResult Maven / Gradle / Ivy

The newest version!
package com.zhongweixian.excel.entity.result;

/**
 * @author : caoliang
 * @date : 2017/11/14  下午2:17
 */
public class ExcelVerifyHanlderResult {
    /**
     * 是否正确
     */
    private boolean success;
    /**
     * 错误信息
     */
    private String msg;

    public ExcelVerifyHanlderResult() {

    }

    public ExcelVerifyHanlderResult(boolean success) {
        this.success = success;
    }

    public ExcelVerifyHanlderResult(boolean success, String msg) {
        this.success = success;
        this.msg = msg;
    }

    public String getMsg() {
        return msg;
    }

    public boolean isSuccess() {
        return success;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public void setSuccess(boolean success) {
        this.success = success;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy