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
36
37
| package com.consum.base.core;
|
| /**
| * @ClassName WhBusinessEnum
| * @Author cy
| * @Date 2023/10/24
| * @Description 单据类型
| * @Version 1.0
| **/
| public enum WhBusinessEnum {
| /**
| * 1 采购
| */
| CAIGOU((short) 1),
| /**
| * 2 调拨
| */
| DIAOBO((short) 2),
| /**
| * 3出库
| */
| CHUKU((short) 3),
| /**
| * 4部门分发
| */
| BUMENFENFA((short) 4);
|
| private short value;
|
| WhBusinessEnum(short value) {
| this.value = value;
| }
|
| public short getValue() {
| return value;
| }
| }
|
|