using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model.ViewModels { /// /// 反应釜类型子表 /// public class HwWareHouseSubView { /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// Desc: /// Default: /// Nullable:False /// public int 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 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 int BinId { get; set; } /// /// Desc:物料类型:整包、尾料、溶剂 /// Default: /// Nullable:True /// public string MaterialType { get; set; } /// /// Desc:重量 /// Default: /// Nullable:True /// public decimal SetWeight { get; set; } /// /// Desc:误差值 /// Default: /// Nullable:True /// public decimal SetError { get; set; } /// /// Desc:工装区分,相同值代表在一个料桶中 /// Default: /// Nullable:True /// public string Difference { get; set; } /// /// Desc:配方名 /// Default: /// Nullable:True /// public string Recipe { get; set; } /// /// 皮重 /// public decimal Tare { get; set; } } }