using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
[SugarTable(nameof(Dt_StationPackInfo), "码垛工位执行信息表")]
public class Dt_StationPackInfo : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int id { get; set; }
///
/// 站台编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台编号")]
public string StationCode { get; set; }
///
/// 输送口编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "输送口编号")]
public string LineCode { get; set; }
///
/// 码垛机械手编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛机械手编号")]
public string CraneCode { get; set; }
///
/// 垛型
///
[SugarColumn(IsNullable = false, ColumnDescription = "垛型")]
public int PackType { get; set; }
///
/// 码垛工单号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛工单号")]
public string OrderNo { get; set; }
///
/// 物料编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛物料编号")]
public string MaterielCode { get; set; }
///
/// 加工中心编码(机台)
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "加工中心编码(机台)")]
public string MakeCode { get; set; }
///
/// 码垛结托数量
///
[SugarColumn(IsNullable = false, ColumnDescription = "码垛结托数量")]
public int PackNum { get; set; }
///
/// 码垛已分配数量
///
[SugarColumn(IsNullable = false, ColumnDescription = "码垛已分配数量")]
public int AssignNum { get; set; }
///
/// 码垛执行中数量
///
[SugarColumn(IsNullable = false, ColumnDescription = "码垛执行中数量")]
public int ExecutingNum { get; set; }
///
/// 码垛已完成数量
///
[SugarColumn(IsNullable = false, ColumnDescription = "码垛已完成数量")]
public int OverNum { get; set; }
}
}