扫码打印接口提交

This commit is contained in:
alex
2023-06-15 16:21:11 +08:00
parent 34c359d449
commit 06aeced8af
5 changed files with 214 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
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; }
}
}