SignStatusEnum.java
567 Bytes
package com.ruoyi.common;
/**
* 签到状态枚举
* @author 20412
*/
public enum SignStatusEnum {
SIGN_STATUS_ZONE_ENUM(0,"今日签到正常"),
SIGN_STATUS_EMPTY_ENUM(1,"今日打卡未签"),
SIGN_STATUS_DELAY_ENUM(2,"今日签到迟到"),
SIGN_STATUS_WINE_ENUM(3,"今日酒测异常");
SignStatusEnum(Integer status,String description){
this.status = status;
this.description = description;
}
private String description;
private Integer status;
public Integer getStatus() {
return status;
}
}