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

top.isopen.commons.springboot.repository.bean.QueryRequest Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package top.isopen.commons.springboot.repository.bean;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import top.isopen.commons.springboot.bean.BaseRequest;

import java.util.List;

/**
 * 复杂查询请求
 *
 * @author TimeChaser
 * @version 1.0
 * @since 2023/7/7 16:51
 */
@Data
@EqualsAndHashCode(callSuper = true)
@AllArgsConstructor
@NoArgsConstructor
public class QueryRequest extends BaseRequest {

    private static final long serialVersionUID = -7859444924246432002L;

    /**
     * 查询列名,需与 Model 层中的列明大小写保持一致
     *
     * @since 2023/7/7 16:51
     */
    private String column;
    /**
     * 查询类型,大小写无关
     * 

* 见 {@link top.isopen.commons.springboot.repository.enums.QueryTypeEnum#value} * * @since 2023/7/7 16:51 */ private String type; /** * 查询值 * * @since 2023/7/7 16:52 */ private Object value; /** * 子查询 * * @since 2023/7/20 11:12 */ private List subQuery; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy