1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.oying.modules.pc.store.domain.enums;
|
| public enum StoreStatusEnum {
|
| creating(1000, "筹备中"),
| reviewing(2000, "审核中"),
| business_open(3000, ""),
| business_paused(3001, ""),
| business_banned(3002, ""),
| business_suspended(3003, ""),
| closed(1001, ""),
| deleted(1002, "");
|
| private final int value;
| private final String reasonPhrase;
|
| private StoreStatusEnum(int value, String reasonPhrase) {
| this.value = value;
| this.reasonPhrase = reasonPhrase;
| }
| }
|
|