Files
Gatedge.NewOrientLandMark.BOS/Gatedge.ScanCode/Models/Dto/BarCode.cs

15 lines
261 B
C#
Raw Normal View History

2025-11-18 17:43:12 +08:00
namespace Gatedge.ScanCode.Models.Dto
{
/// <summary>
/// 条码入参
/// </summary>
public class BarCodeParam
{
/// <summary>
/// 条码编码
/// </summary>
public string? BarCode { get; set; }
}
}