kyy
2025-09-17 80b5db679d95b5eaf0da83c1a078e7a105bf327d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using SqlSugar;
 
namespace MES.Service.Modes;
 
/// <summary>
///     MES库存物料条码表
/// </summary>
[SugarTable("dbo.MES_INV_ITEM_BARCODES")]
public class MesInvItemBarcodes
{
    /// <summary>
    ///     物料条码
    /// </summary>
    [SugarColumn(ColumnName = "ITEM_BARCODE", IsNullable = false, Length = 150)]
    public string ItemBarcode { get; set; }
}