cn.woodwhales.common.example.model.business.DataToolTempEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodwhales-common Show documentation
Show all versions of woodwhales-common Show documentation
https://github.com/woodwhales
package cn.woodwhales.common.example.model.business;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author woodwhales on 2021-07-25 12:41
*/
@Getter
@AllArgsConstructor
public enum DataToolTempEnum {
YELLOW(1, "黄色"),
GREEN(2, "绿色"),
BLUE(3, "蓝色"),
;
private final Integer code;
private final String description;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy