1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.vincent.rsf.server.api.entity.enums;
|
| /**
| * @author Ryan
| * @version 1.0
| * @title PurchaseType
| * @description
| * @create 2025/3/5 15:54
| */
| public enum OrderType {
| //订单类型
| ORDER_PURCHASE_IN("purchase", "采购入库单"),
| ORDER_OUT("out", "采购出库单"),
| ;
|
| OrderType(String type, String desc) {
| this.type = type;
| this.desc = desc;
| }
|
| public String type;
| public String desc;
|
| }
|
|