| 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
38
39
40
41
42
43
44
 | | using System; |  | using System.Collections.Generic; |  | using System.ComponentModel; |  | using System.Linq; |  | using System.Text; |  | using System.Threading.Tasks; |  |   |  | namespace WIDESEA_Core.CodeConfigEnum |  | { |  |     /// <summary> |  |     /// 编码规则编号 |  |     /// </summary> |  |     public enum RuleCodeEnum |  |     { |  |         /// <summary> |  |         /// 入库单号编码规则编号 |  |         /// </summary> |  |         [Description("入库单号编码规则编号")] |  |         InboundOrderRule, |  |   |  |         /// <summary> |  |         /// 出库单号编码规则编号 |  |         /// </summary> |  |         [Description("出库单号编码规则编号")] |  |         OutboundOrderRule, |  |   |  |         /// <summary> |  |         /// 收货单号编码规则编号 |  |         /// </summary> |  |         [Description("收货单号编码规则编号")] |  |         ReceiveOrderRule, |  |   |  |         /// <summary> |  |         /// 质检单号编码规则 |  |         /// </summary> |  |         [Description("质检单号编码规则")] |  |         CheckOrderRule, |  |         /// <summary> |  |         /// 发料单号编码规则 |  |         /// </summary> |  |         [Description("发料单号编码规则")] |  |         FLCodeRule |  |     } |  | } | 
 |