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
34
| package cn.lili.modules.order.cart.entity.enums;
|
| /**
| * 配送方式
| *
| * @author paulG
| * @since 2020-03-25 2:30 下午
| **/
| public enum DeliveryMethodEnum {
|
| /**
| * "自提"
| */
| SELF_PICK_UP("自提"),
| /**
| * "同城配送"
| */
| LOCAL_TOWN_DELIVERY("同城配送"),
| /**
| * "物流"
| */
| LOGISTICS("物流");
|
| private final String description;
|
| DeliveryMethodEnum(String description) {
| this.description = description;
| }
|
| public String getDescription() {
| return description;
| }
|
| }
|
|