using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.PdaVm { /// /// pda出库Model /// public class PdaSoVm { /// /// 托盘码 /// public string PalletNo { get; set; } /// /// 出库单号 /// public string SoNo { get; set; } /// /// 出库单明细Id /// public string SoDetailId { get; set; } /// /// 是否整箱 0整箱 1散盒 /// public string IsFullBox { get; set; } /// /// 是否整盒 0整盒 1散支 /// public string IsFullBox2 { get; set; } /// /// 箱码 /// public string BoxNo { get; set; } /// /// 盒码 /// public string BoxNo2 { get; set; } /// /// 支/袋码 /// public string BoxNo3 { get; set; } /// /// 拣货数量 /// public int PickQty { get; set; } } }