1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.nq.enums;
|
| import lombok.Getter;
|
| @Getter
| public enum EStockAIStatus {
|
| //上线
| online("online"),
| //下架
| out("out"),
| ;
|
| private String value;
|
| EStockAIStatus(String value) {
| this.value = value;
| }
|
| }
|
|