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

cn.schoolwow.quickdao.module.database.dql.subCondition.domain.SubQueryTableOption 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.domain.database.dql.condition.Condition;
import cn.schoolwow.quickdao.domain.entity.Entity;

import java.io.Serializable;

/**
 * 查询表信息
 * */
public class SubQueryTableOption implements Serializable {
    /**
     * 实体类信息
     * */
    public Entity entity;

    /**
     * 关联子查询
     * */
    public transient Condition joinCondition;

    /**
     * 关联表别名
     */
    public String tableAliasName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy