using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models.System { /// /// 出库厚度历史 /// [SugarTable(nameof(dt_Thickness_hty), "出库厚度历史")] public class dt_Thickness_hty : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 顶部左边 /// [SugarColumn(IsNullable = true, ColumnDescription = "顶部左边")] public float topleft { get; set; } /// /// 顶部中间 /// [SugarColumn(IsNullable = true, ColumnDescription = "顶部中间")] public float topmiddle { get; set; } /// /// 顶部右边 /// [SugarColumn(IsNullable = true, ColumnDescription = "顶部右边")] public float topright { get; set; } /// /// 中间左边 /// [SugarColumn(IsNullable = true, ColumnDescription = "中间左边")] public float centreleft { get; set; } /// /// 中间中心 /// [SugarColumn(IsNullable = true, ColumnDescription = "中间中心")] public float centremiddle { get; set; } /// /// 中间右边 /// [SugarColumn(IsNullable = true, ColumnDescription = "中间右边")] public float centreright { get; set; } /// /// 底部左边 /// [SugarColumn(IsNullable = true, ColumnDescription = "底部左边")] public float bottomleft { get; set; } /// /// 底部右边 /// [SugarColumn(IsNullable = true, ColumnDescription = "底部右边")] public float bottomright { get; set; } /// /// 合格 /// [SugarColumn(IsNullable = true, ColumnDescription = "合格")] public int qualified { get; set; } /// /// 区间值 /// [SugarColumn(IsNullable = true, ColumnDescription = "区间值")] public string interval { get; set; } } }