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