using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models.Check { /// /// /// [SugarTable("Dt_ReCheckOrder")] public class Dt_ReCheckOrder : BaseEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "OrderNo")] public string OrderNo { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "MaterielCode")] public string MaterielCode { get; set; } = null!; /// /// /// public string MaterielName { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "BatchNo")] public string BatchNo { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "WarehouseCode")] public string WarehouseCode { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Unit")] public string Unit { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "FactoryArea")] public string FactoryArea { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Result")] public int Result { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "InspectionNumber")] public int InspectionNumber { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "Qty")] public decimal Qty { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "SignSeq")] public int SignSeq { get; set; } } }