using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing { /// ///反应釜计划 /// public class Hw_WareHouseSubView { /// /// Desc: /// Default: /// Nullable:False /// [Column(IsPrimary = true, IsIdentity = true)] public string No { get; set; } /// /// Desc: /// Default: /// Nullable:False /// public string MainId { get; set; } /// /// Desc:批次 /// Default: /// Nullable:True /// public string PId { get; set; } /// /// Desc:产品名称 /// Default: /// Nullable:True /// public string ProductName { get; set; } /// /// Desc:产品名称 /// Default: /// Nullable:True /// public string BinId { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string MaterialID { get; set; } /// /// Desc:二维码 /// Default: /// Nullable:True /// public string Material_Code { get; set; } /// /// Desc:物料名称 /// Default: /// Nullable:True /// public string MaterialName { get; set; } /// /// Desc:物料类型:整包、尾料、溶剂 /// Default: /// Nullable:True /// public string MaterialType { get; set; } /// /// Desc:重量 /// Default: /// Nullable:True /// public string SetWeight { get; set; } /// /// Desc:误差值 /// Default: /// Nullable:True /// public string SetError { get; set; } /// /// Desc:工装区分,相同值代表在一个料桶中 /// Default: /// Nullable:True /// public string Difference { get; set; } /// /// Desc:是否有固含 1为有,0没有 /// Default:0 /// Nullable:True /// public string Fixed { get; set; } /// /// Desc:固含率 /// Default: /// Nullable:True /// public string FixedRatio { get; set; } /// /// Desc:配方名 /// Default: /// Nullable:True /// public string Recipe { get; set; } /// /// 泵二维码 /// public string PumpCode { get; set; } /// /// 地磅 /// public string Weighbridge { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 计划状态 8已完成,5未下发 /// public int Plan_State { get; set; } /// /// 皮重 /// public string Tare { get; set; } } }