20 lines
419 B
C#
20 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
/// <summary>
|
|
/// 条码打印输入参数
|
|
/// </summary>
|
|
public class BarCodePrintInput
|
|
{
|
|
/// <summary>
|
|
/// 入库申请单Id列表
|
|
/// </summary>
|
|
public List<string> BillIds { get; set; }
|
|
}
|
|
}
|