using System;
using System.Collections.Generic;
namespace WMS.BZModels.Dto.SX.PalletizingDtos
{
public partial class PalletizingdetailDto
{
///
/// Id
///
public string Id { get; set; }
///
/// 码垛主表id
///
public string PalletizingId { get; set; }
///
/// 工字轮任务号
///
public int TaskNum { get; set; }
///
/// 工字轮条码
///
public string BarCode { get; set; }
///
/// sku
///
public string Sku { get; set; }
///
/// 机台组
///
public string WbGroupCode { get; set; }
///
/// 装箱规则
///
public string PackRule { get; set; }
///
/// 码垛层数
///
public int Layer { get; set; }
///
/// Memo
///
public string Memo { get; set; }
///
/// AddWho
///
public string AddWho { get; set; }
///
/// EditWho
///
public string EditWho { get; set; }
///
/// AddTime
///
public DateTime AddTime { get; set; }
///
/// EditTime
///
public DateTime EditTime { get; set; }
///
/// 等级
///
public string GradeCode { get; set; }
///
/// MaterialCode
///
public string MaterialCode { get; set; }
///
/// MaterialDesc
///
public string MaterialDesc { get; set; }
///
/// OvcFlag
///
public decimal? OvcFlag { get; set; }
///
/// OvcValue
///
public string OvcValue { get; set; }
///
/// SolderCount
///
public decimal? SolderCount { get; set; }
///
/// Winding
///
public string Winding { get; set; }
///
/// IsBlack
///
public bool IsBlack { get; set; }
///
/// Batch
///
public string Batch { get; set; }
///
/// IsControlpanel
///
public bool IsControlpanel { get; set; }
///
/// InDocsNo
///
public string InDocsNo { get; set; }
///
/// PalletizingDate
///
public DateTime PalletizingDate { get; set; }
///
/// EquNo
///
public string EquNo { get; set; }
///
/// CLBarCode
///
public string CLBarCode { get; set; }
///
/// TolWQty
///
public decimal? TolWQty { get; set; }
///
/// TareWQty
///
public decimal? TareWQty { get; set; }
///
/// NetWQty
///
public decimal? NetWQty { get; set; }
///
/// BoxCode
///
public string BoxCode { get; set; }
}
public class PalletizingdetailQueryDto : PagerInfo
{
///
/// PalletizingId
///
public string PalletizingId { get; set; }
///
/// TaskNum
///
public int TaskNum { get; set; }
///
/// BarCode
///
public string BarCode { get; set; }
///
/// Sku
///
public string Sku { get; set; }
///
/// WbGroupCode
///
public string WbGroupCode { get; set; }
///
/// GradeCode
///
public string GradeCode { get; set; }
}
}