package cn.wisenergy.common.enums;
import lombok.Getter;
/**
* 用户点赞的状态
* Created by m1991 on 2021/3/12 17:02
*/
@Getter
public enum LikedStatusEnum {
LIKE(1, "点赞"),
UNLIKE(0, "取消点赞/未点赞"),
;
private Integer code;
private String msg;
LikedStatusEnum(Integer code, String msg) {
this.code = code;
this.msg = msg;
}
}
-
m1991 authoredc63aee5f