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

com.weisiliang.formui.service.async.ExcelExportResult Maven / Gradle / Ivy

The newest version!
package com.weisiliang.formui.service.async;

public class ExcelExportResult {
    String fileName;
    String fileUrl;
    Integer rsCount;

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public Integer getRsCount() {
        return rsCount;
    }

    public void setRsCount(Integer rsCount) {
        this.rsCount = rsCount;
    }

    public String getFileUrl() {
        return fileUrl;
    }

    public void setFileUrl(String fileUrl) {
        this.fileUrl = fileUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy