This commit is contained in:
qianjiawei
2023-12-20 16:58:40 +08:00
parent c45c3542a3
commit e8d9f9af81
5 changed files with 97 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class BarCodeInput
{
public string? BillId { get; set; }
}
}