using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using SqlSugar;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models
|
{
|
[SugarTable(nameof(Dt_StockInfoDetailCP), "成品库存信息明细")]
|
public class Dt_StockInfoDetailCP : BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "库存明细ID")]
|
public int StockDetailId { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "箱ID")]
|
public float BoxId { get; set; }
|
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "箱号")]
|
public string BoxCode { get; set; }
|
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "周期码")]
|
public string DateCode { get; set; }
|
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "生产型号")]
|
public string PartNum { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "物料ID")]
|
public float JobId { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "PCS数量")]
|
public float QtyOfpcs { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "叉板数")]
|
public float QtyOfxout { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "状态")]
|
public int CPStockDetailStatus { get; set; }
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "LPNNO")]
|
public string LPNNO { get; set; }
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "WMS源库位")]
|
public string OrinalLocation { get; set; }
|
|
}
|
}
|