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

com.yuweix.kuafu.dao.mybatis.order.Ordered Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.dao.mybatis.order;




/**
 * @author yuwei
 */
public enum Ordered {
	ASC("asc"),
	DESC("desc");

	private String code;

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

	public String getCode() {
		return code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy