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 
 | 
{ 
 | 
    /// <summary> 
 | 
    /// 出库重量历史 
 | 
    /// </summary> 
 | 
    [SugarTable(nameof(dt_Weight_hty), "出库重量历史")] 
 | 
    public class dt_Weight_hty : BaseEntity 
 | 
    { 
 | 
        /// <summary> 
 | 
        /// 主键 
 | 
        /// </summary> 
 | 
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] 
 | 
        public int Id { get; set; } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 重量 
 | 
        /// </summary> 
 | 
        [SugarColumn(IsNullable = true,  ColumnDescription = "重量")] 
 | 
        public float weight { get; set; } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 合格 
 | 
        /// </summary> 
 | 
        [SugarColumn(IsNullable = true,  ColumnDescription = "合格")] 
 | 
        public int qualified { get; set; } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 区间值 
 | 
        /// </summary> 
 | 
        [SugarColumn(IsNullable = true, ColumnDescription = "区间值")] 
 | 
        public string interval { get; set; } 
 | 
    } 
 | 
} 
 |