Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/BarCodeInput.cs
qianjiawei e8d9f9af81 bug
2023-12-20 16:58:40 +08:00

14 lines
257 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 BarCodeInput
{
public string? BillId { get; set; }
}
}