using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class CarryBarCodeInput
{
///
/// 打印条码集合
///
public List barCodes { get; set; }
///
/// 打印份数
///
public int copies { get; set; } = 1;
}
}