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

com.yuweix.kuafu.dao.mybatis.where.Connector Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.dao.mybatis.where;




/**
 * 连接符
 * @author yuwei
 */
public enum Connector {
	and("and"),
	or("or");

	private String code;

	Connector(String code) {
		this.code = code;
	}

	public String getCode() {
		return code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy