using System; using System.Linq; using System.Text; using SqlSugar; namespace Admin.Core.Model { /// /// /// [SugarTable("Hw_FeedReport", "cwss_xl")] public class Hw_FeedReport { public Hw_FeedReport() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// Desc:计划号 /// Default: /// Nullable:True /// public string PlanId { get; set; } /// /// Desc:投料釜主键 /// Default: /// Nullable:True /// public int? WID { get; set; } /// /// Desc:投料釜名称 /// Default: /// Nullable:True /// public string WName { get; set; } /// /// Desc:投料釜条码 /// Default: /// Nullable:True /// public string WCode { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string MaterialId { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string MaterialName { get; set; } /// /// Desc:物料条码 /// Default: /// Nullable:True /// public string MCode { get; set; } /// /// 物料类型 整包,称量 /// public string MType { get; set; } /// /// 是否匹配成功 /// public string IsTrue { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 溶剂扫码完整信息 /// public string WholePackage { get; set; } } }