using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// ///配方信息 /// public class xl_weigh { /// /// Desc:主键 /// Default: /// Nullable:False /// [Column(IsPrimary = true, IsIdentity = true)] public int ID { get; set; } /// /// Desc:台机号 /// Default: /// Nullable:True /// public string Equip_Code { get; set; } /// /// Desc:物料ID /// Default: /// Nullable:True /// public string Recipe_ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Bin_Serial { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int Weight_Id { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Material_ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Station { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Set_Weight { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Set_Error { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Cpk_Error { get; set; } } }