using BPASmartClient.Model; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkMOC { public class GVL_MorkMOC { /// /// 订单队列 /// public ConcurrentQueue morkOrderPushes = new ConcurrentQueue(); /// /// 订单暂存列表 /// public List doOrderEvents { get; set; } = new List(); public bool OutMaterailCompelete = false; } }