1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.common.enums;
|
| import lombok.Getter;
|
| /**
| * ICC对接:打卡状态枚举
| */
| @Getter
| public enum ClockInState {
|
| NORMAL("正常",1),
| ABNORMAL("不正常",0);
|
| private String desc;
|
| private Integer value;
|
| ClockInState(String desc, Integer value) {
| this.desc = desc;
| this.value = value;
| }
| }
|
|