| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | package com.zy.asrs.wms.asrs.entity.enums; |  |   |  | /** |  |  * 订单入库类型 |  |  */ |  | public enum OrderType { |  |     //UTC 入库单 |  |     UTC_IN_ORDER(1L, "手动入库单"), |  |     //UTC 出库单 |  |     UTC_OUT_ORDER(2L, "手动出库单"), |  |     //平库入库单 |  |     PK_IN_ORDER(3L, "平库入库单") |  |   |  |     ; |  |     public Long id; |  |     public String desc; |  |   |  |     OrderType(Long id, String desc) { |  |         this.id = id; |  |         this.desc = desc; |  |     } |  | } | 
 |