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

top.summerboot.orm.dto.CommonQueryInterface Maven / Gradle / Ivy

The newest version!
package top.summerboot.orm.dto;

import com.alibaba.fastjson.JSONObject;

import java.util.List;

/**
 * @author xieshuang
 * @date 2021-04-24 11:48
 */
public interface CommonQueryInterface {

    JSONObject getEq();

    JSONObject getLe();

    JSONObject getGe();

    JSONObject getLike();

    JSONObject getNe();

    JSONObject getIn();

    JSONObject getIsNull();

    List getOrderBy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy