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

com.github.yooryan.advancequery.AdvanceQuery Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package com.github.yooryan.advancequery;

import lombok.Data;

import java.util.List;

/**
 * @author linyunrui
 */
@Data
public class AdvanceQuery {

    /**
     * 查询条件
     */
    private String key;

    /**
     * 查询操作
     */
    private String op;

    /**
     * 查询值
     */
    private List value;

    /**
     * 前置表名
     */
    private String tableAlias;
}