using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.SysEntity { /// ///异常处理表 /// [SugarTable("SysException")] public class SysException:BaseEntity { /// /// 异常号 /// Default: /// Nullable:True /// public string ExceptionNo {get;set;} /// /// 异常类型 0:空取 1:满入 2:双工位异常 /// Default: /// Nullable:True /// public string Type {get;set;} /// /// 托盘号 /// Default: /// Nullable:True /// public string PalletNo {get;set;} /// /// 异常储位 多储位用【;】拆分 /// Default: /// Nullable:True /// public string ExcLocatNo {get;set;} /// /// 关联单号 入库单 出库单 移库单 /// Default: /// Nullable:True /// public string OrderNo {get;set;} /// /// 关联任务号 /// Default: /// Nullable:True /// public string TaskNo {get;set;} /// /// 状态 0:未处理 1:已处理 /// Default: /// Nullable:True /// public string Status {get;set;} /// /// 处理描述 /// Default: /// Nullable:True /// public string Text {get;set;} /// /// 处理描述 /// Default: /// Nullable:True /// public string Demo {get;set;} } }