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
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SugarTable("Dt_ReCheckOrder")]
|
public class Dt_ReCheckOrder : BaseEntity
|
{
|
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "OrderNo")]
|
public string OrderNo { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "MaterielCode")]
|
public string MaterielCode { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "BatchNo")]
|
public string BatchNo { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "WarehouseCode")]
|
public string WarehouseCode { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Unit")]
|
public string Unit { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "FactoryArea")]
|
public string FactoryArea { get; set; } = null!;
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Result")]
|
public int Result { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "InspectionNumber")]
|
public int InspectionNumber { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Qty")]
|
public decimal Qty { get; set; }
|
|
/// <summary>
|
/// 备 注:
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "SignSeq")]
|
public int SignSeq { get; set; }
|
|
|
|
|
}
|
}
|