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.
60 lines
1.5 KiB
C#
60 lines
1.5 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 Admin.Core.Model.Model_New
|
|
{
|
|
/// <summary>
|
|
/// 打印信息表
|
|
/// </summary>
|
|
[SugarTable("PRINT_ORDERINFO", "AUCMA_SCADA")]
|
|
public class PrintOrderInfo
|
|
{
|
|
/// <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 = "LINER_AMOUNT")]
|
|
public int LinerAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱壳已打印数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOX_AMOUNT")]
|
|
public int BoxAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CREATE_TIME")]
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|