You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
854 B
C#

using SqlSugar;
using System;
namespace FrmPrint
{
[SugarTable("T_SY_TraceState")]
public class TSYTraceState
{
[SugarColumn(ColumnName = "ProductBarcode")]
public string ProductBarcode { get; set; }
[SugarColumn(ColumnName = "SemiBarcode_A")]
public string SemiBarcode_A { get; set; }
[SugarColumn(ColumnName = "SemiBarcode_B")]
public string SemiBarcode_B { get; set; }
[SugarColumn(ColumnName = "SemiBarcode_C")]
public string SemiBarcode_C { get; set; }
[SugarColumn(ColumnName = "SemiBarcode2")]
public string SemiBarcode2 { get; set; }
[SugarColumn(ColumnName = "CurrentStationID")]
public string CurrentStationID { get; set; }
[SugarColumn(ColumnName = "BeginTime")]
public DateTime BeginTime { get; set; }
}
}