1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| package cn.lili.modules.store.entity.enums;
|
| /**
| * 结算单状态
| *
| * @author Chopper
| * @since 2020/11/17 4:27 下午
| */
| public enum BillStatusEnum {
|
| /**
| * "已出账"
| */
| OUT("已出账"),
| /**
| * "已核对"
| */
| CHECK("已核对"),
| /**
| * "已完成"
| */
| COMPLETE("已完成");
| private final String description;
|
| BillStatusEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return description;
| }
|
| }
|
|