using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Magicodes.ExporterAndImporter.Core;
|
using SqlSugar;
|
using WIDESEA_Core.DB.Models;
|
using WIDESEAWCS_Model.Models.TaskInfo;
|
|
namespace WIDESEA_Model.Models.Basic
|
{
|
[SugarTable(nameof(Dt_FillingOrder), "罐装单")]
|
public class Dt_FillingOrder : BaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[ImporterHeader(Name = "主键")]
|
[ExporterHeader(DisplayName = "主键")]
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 品号
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品号")]
|
public string ArticleNum { get; set; }
|
|
/// <summary>
|
/// 品名
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品名")]
|
public string ArticleName { get; set; }
|
|
/// <summary>
|
/// 规格
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "规格")]
|
public string Specification { get; set; }
|
|
/// <summary>
|
/// 批号
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "批号")]
|
public string batchNum { get; set; }
|
|
/// <summary>
|
/// 条码值
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码值")]
|
public string BarCode { get; set; }
|
|
/// <summary>
|
/// 派工单号
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "派工单号")]
|
public string WorkOrder { get; set; }
|
|
/// <summary>
|
/// 条码数量
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码数量")]
|
public decimal BarNum { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "创建时间")]
|
public string CreationTime { get; set; }
|
|
/// <summary>
|
/// 派工ID
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "派工ID")]
|
public int WorkID { get; set; }
|
|
/// <summary>
|
/// 产品包装桶类型
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "产品包装桶类型")]
|
public string ProductType { get; set; }
|
|
/// <summary>
|
/// 条码状态
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码状态")]
|
public int BarStatus { get; set; }
|
|
/// <summary>
|
/// 条码值id
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "条码值id")]
|
public int BarCodeID { get; set; }
|
|
/// <summary>
|
/// 品号id
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "品号id")]
|
public int ArticleNumID { get; set; }
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "物料名称")]
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
/// 货区
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "货区")]
|
public string WarehouseType { get; set; }
|
|
/// <summary>
|
/// 物料编码
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "物料编码")]
|
public string MaterialCode { get; set; }
|
|
/// <summary>
|
/// 备用1
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "备用1")]
|
public string Standby1 { get; set; }
|
|
/// <summary>
|
/// 备用2
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 30, ColumnDescription = "备用2")]
|
public string Standby2 { get; set; }
|
}
|
}
|