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
35
| package com.utils.enumeration;
|
| /**
| * 同步模块枚举类
| * @author Shen
| */
| public enum SyncModuleEnum {
|
| /**
| * SRM-物料信息
| */
| SRM_MATERIEL_INFO("SRM_MATERIEL_INFO", "SRM-物料信息"),
|
| SRM_STOCK_PRICE_INFO("SRM_STOCK_PRICE_INFO", "SRM-库存均价信息"),
|
| SRM_ORDER_BILL_INFO("SRM_ORDER_BILL_INFO", "SRM-采购订单价信息"),
|
| SRM_INVOICE_BILL_INFO("SRM_INVOICE_BILL_INFO", "SRM-发票价信息");
|
| private String value;
| private String comment;
|
| SyncModuleEnum(String value, String comment) {
| this.value = value;
| this.comment = comment;
| }
|
| public String stringValue() {
| return this.value;
| }
|
| public String getComment() {
| return this.comment;
| }
| }
|
|