Files
Gatedge.NewOrientLandMark.BOS/Gatedge.ScanCode/Models/Dto/BarCode.cs
liqionghai d758497f93 1
2025-11-18 17:43:12 +08:00

15 lines
261 B
C#

namespace Gatedge.ScanCode.Models.Dto
{
/// <summary>
/// 条码入参
/// </summary>
public class BarCodeParam
{
/// <summary>
/// 条码编码
/// </summary>
public string? BarCode { get; set; }
}
}