using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Model.ModelDto.PdaDto
|
{
|
public class PdaPalletNoCheckDto
|
{
|
public string PalletNo { get; set; }
|
public string BoxNo { get; set; }
|
public int Qty { get; set; }
|
|
public string SkuNo { get; set; }
|
public string SkuName { get; set; }
|
public string LotNo { get; set; }
|
}
|
}
|