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

com.anwen.mongo.aggregate.ChainAggregate Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.aggregate;

import java.util.List;

public interface ChainAggregate {

    /**
     * 获取列表 返回T类型的List
     * @return {@link List}
     * @author JiaChaoYang
     * @date 2023/7/20 23:13
     */
    List list();

    /**
     * 获取列表,返回Class类型的List
     * @param rClazz 返回类型
     * @return {@link List}
     * @author anwen
     * @date 2024/6/19 下午11:37
     */
     List list(Class rClazz);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy