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

cn.schoolwow.quickdao.module.database.dql.subCondition.domain.SubQueryFragmentOption Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package cn.schoolwow.quickdao.module.database.dql.subCondition.domain;

import cn.schoolwow.quickdao.module.database.dql.condition.domain.SQLFragmentEntry;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * 关联表SQL片段
 * */
public class SubQueryFragmentOption implements Serializable {
    /**
     * where语句
     */
    public List whereList = new ArrayList<>();

    /**
     * groupBy字段
     */
    public List groupByList = new ArrayList<>();

    /**
     * orderBy字段
     */
    public List orderByList = new ArrayList<>();

    /**
     * where参数列表
     */
    public List whereParameterList = new ArrayList();

    /**
     * having参数
     */
    public List havingParameterList = new ArrayList();
}