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

com.alibaba.qlexpress4.api.BatchAddFunctionResult Maven / Gradle / Ivy

package com.alibaba.qlexpress4.api;

import java.util.ArrayList;
import java.util.List;

/**
 * Author: DQinYuan
 */
public class BatchAddFunctionResult {

    private final List succ;
    private final List fail;

    public BatchAddFunctionResult() {
        this.succ = new ArrayList<>();
        this.fail = new ArrayList<>();
    }

    public List getSucc() {
        return succ;
    }

    public List getFail() {
        return fail;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy