You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
436 B
Java

package com.ibeetl.jlw.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.beetl.sql.annotation.entity.EnumMapping;
import org.beetl.sql.annotation.entity.EnumValue;
/**
* 上下架状态
*
* @author mlx
*/
@Getter
@EnumMapping("name")
@AllArgsConstructor
public enum GlobalStatusEnum {
NORMAL(1, "正常"),
DELETED(2, "删除");
@EnumValue
private Integer code;
private String text;
}