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