using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
///
/// 条码打印输入参数
///
public class BarCodePrintInput
{
///
/// 入库申请单Id列表
///
public List BillIds { get; set; }
}
}