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
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int id { get; set; }
|
|
/// <summary>
|
/// 站台编号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台编号")]
|
public string StationCode { get; set; }
|
|
/// <summary>
|
/// 输送口编号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "输送口编号")]
|
public string LineCode { get; set; }
|
|
/// <summary>
|
/// 码垛机械手编号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛机械手编号")]
|
public string CraneCode { get; set; }
|
/// <summary>
|
/// 垛型
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "垛型")]
|
public int PackType { get; set; }
|
|
/// <summary>
|
/// 码垛工单号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛工单号")]
|
public string OrderNo { get; set; }
|
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛物料编号")]
|
public string MaterielCode { get; set; }
|
|
/// <summary>
|
/// 加工中心编码(机台)
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "加工中心编码(机台)")]
|
public string MakeCode { get; set; }
|
|
/// <summary>
|
/// 码垛结托数量
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "码垛结托数量")]
|
public int PackNum { get; set; }
|
|
/// <summary>
|
/// 码垛已分配数量
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "码垛已分配数量")]
|
public int AssignNum { get; set; }
|
|
/// <summary>
|
/// 码垛执行中数量
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "码垛执行中数量")]
|
public int ExecutingNum { get; set; }
|
|
/// <summary>
|
/// 排序
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "排序")]
|
public int OrderIndex { get; set; }
|
|
/// <summary>
|
/// 码垛已完成数量
|
/// </summary>
|
[SugarColumn(IsNullable = false, ColumnDescription = "码垛已完成数量")]
|
public int OverNum { get; set; }
|
}
|
}
|