123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.String.Enums
- {
- /// <summary>
- /// 入库状态
- /// </summary>
- public enum InReceiptStatus
- {
- [Description("初始创建")]
- Init = 0,
- [Description("收货审核")]
- ReceiptAudit = 11,
- [Description("收货中")]
- InReceipt = 55,
- [Description("收货完成")]
- ReceiptComplete = 99,
- [Description("强制完成")]
- ForceComplete = 100,
- [Description("已删除")]
- Deleted = 111
- }
- }
|