21 lines
460 B
C#
21 lines
460 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 打印条码集合
|
|
/// </summary>
|
|
public List<string> barCodes { get; set; }
|
|
/// <summary>
|
|
/// 打印份数
|
|
/// </summary>
|
|
public int copies { get; set; } = 2;
|
|
}
|
|
}
|