123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity.Protocol
- {
- [Flags]
- public enum StationFlags : Int16
- {
- Request = 1 << 0,
- Confirm = 1 << 1,
- TaskDelete = 1 << 2,
- Notask = 1 << 3,
- PH_Status = 1 << 4,
- Goods_Err = 1 << 5,
- F_Outside = 1 << 6,
- B_Outside = 1 << 7,
- L_Outside = 1 << 8,
- R_Outside = 1 << 9,
- H_Outside = 1 << 10,
- BCR_Noread = 1 << 11,
- Overload = 1 << 12,
- }
- }
-
|