using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model { /// /// 补打二维码 /// [SugarTable("PRINT_SUPPLEMENTBARCODE", "AUCMA_SCADA")] public class PrintSuppleMentBarCode { /// /// 主键 /// [SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true, OracleSequenceName = "SEQ_CODE_BINDING")] public int ObjId { get; set; } /// /// 箱体条码 /// [SugarColumn(ColumnName = "ORDER_CODE")] public string OrderCode { get; set; } /// /// 箱体名称 /// [SugarColumn(ColumnName = "MATERIAL_CODE")] public string MaterialCode { get; set; } /// /// 箱体名称 /// [SugarColumn(ColumnName = "MATERIAL_NAME")] public string MaterialName { get; set; } /// /// 成品码 /// [SugarColumn(ColumnName = "MATERIAL_BARCODE")] public string MaterialBarCode { get; set; } /// /// 打印时间 /// [SugarColumn(ColumnName = "PRINT_TIME")] public DateTime PrintTime { get; set; } /// /// 打印类型 /// [SugarColumn(ColumnName = "PRINT_BARTYPE")] public string PrintBarType { get; set; } /// /// 打印名称 /// [SugarColumn(ColumnName = "PRINT_NAME")] public string PrintName { get; set; } } }