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_CPInboundOrderDetail), "成品入库单箱明细")]
|
public class Dt_CPInboundOrderDetail : BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "入库明细ID")]
|
public int OrderDetailId { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "箱ID")]
|
public int 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 int JobId { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "PCS数量")]
|
public int QtyOfpcs { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "叉板数")]
|
public int QtyOfxout { get; set; }
|
}
|
}
|