using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.domain { public class WeightDataSourceEntity { /// /// 备 注: /// 默认值: /// public int Id { get; set; } /// /// 备 注:配方编号 /// 默认值: /// public string RecipeCode { get; set; } = null; /// /// 备 注:物料编号 /// 默认值: /// public string MaterialCode { get; set; } = null; /// /// 备 注:物料名称 /// 默认值: /// public string MaterialName { get; set; } = null; /// /// 备 注:物料类型 /// 默认值: /// public string MaterialType { get; set; } = null; /// /// 备 注:物料子类型 /// 默认值: /// public string MaterialChildType { get; set; } = null; /// /// 备 注:厚度 /// 默认值: /// public decimal? SetThickness { get; set; } /// /// 备 注:宽度 /// 默认值: /// public decimal? SetWidth { get; set; } /// /// 备 注:层数 /// 默认值: /// public int? SetLayer { get; set; } /// /// 备 注:重量 /// 默认值: /// public decimal? SetWeight { get; set; } /// /// 备 注:公差 /// 默认值: /// public decimal? SetError { get; set; } /// /// 备 注:是否使用 /// 默认值: /// public bool? IsUse { get; set; } } }