using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace WMS.Entity.BllSoEntity { /// /// MES生产叫料任务表 /// [SugarTable("BllProductionCallTask")] public class BllProductionCallTask:BaseEntity { /// /// 投料位置 /// public string PutInLocation { get; set; } /// /// 生产工单 /// public string OrderCode { get; set; } /// /// 物料号 /// public string SkuNo { get; set; } } }