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.
33 lines
900 B
C#
33 lines
900 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FrmPrint
|
|
{
|
|
[SugarTable("base_Barcode_PrintInfo")]
|
|
public class baseBarcodePrintInfo
|
|
{
|
|
|
|
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
|
|
public string ID { get; set; }
|
|
[SugarColumn(ColumnName = "ProductBarcode")]
|
|
public string ProductBarcode { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "SerialNo")]
|
|
public string SerialNo { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "IsRestart")]
|
|
public string IsRestart { get; set; }
|
|
[SugarColumn(ColumnName = "ProductID")]
|
|
public string ProductID { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ShiftID")]
|
|
public string ShiftID { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "InsertTime")]
|
|
public DateTime InsertTime { get; set; }
|
|
}
|
|
}
|