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

io.gitee.mingbaobaba.apijson.querycondition.query.conditions.EnumKeyword Maven / Gradle / Ivy

There is a newer version: v1.1.0
Show newest version
package io.gitee.mingbaobaba.apijson.querycondition.query.conditions;

import lombok.AllArgsConstructor;

/**
 * 

连接条件枚举

* * @author yingsheng.ye * @version 1.0.0 * @since 2023/6/19 21:22 */ @AllArgsConstructor public enum EnumKeyword { /** * 连接条件枚举 */ AND, OR, NOT, NULL, NOT_NULL, IN, NOT_IN, LIKE, NOT_LIKE, EQ, NE, GT, GE, LT, LE, REG_EXP, BETWEEN_AND, /** * 函数 */ COUNT, SUM, MAX, MIN, AVG, GROUP, /** * 排序 */ ORDER_BY; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy