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.
63 lines
1.7 KiB
C#
63 lines
1.7 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Principal;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.Model.domain
|
|
{
|
|
/// <summary>
|
|
/// 打印条码信息
|
|
/// </summary>
|
|
[SugarTable("PRINT_BARCODE", "AUCMA_SCADA")]
|
|
public class PrintBarCode
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
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 = "SUPPLEMENT_MATERIAL")]
|
|
public int SupplementMaterial { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印类型:箱壳、内胆
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRINT_BARTYPE")]
|
|
public int PrintBarType { get; set; }
|
|
}
|
|
}
|