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