using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel { public enum EConveyerState { //空闲 = 0, //任务中 = 1, //[EditBy shaocx,2022-05-11] 任务中 = 0, 空闲 = 1 } }