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.
66 lines
1.7 KiB
C#
66 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 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 = "PLAN_CODE")]
|
|
public string PlanCode { 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 = "PRINT_AMOUNT")]
|
|
public int PrintAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 补打数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SUPPLEMENT_AMOUNT")]
|
|
public int SupplementAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 续打数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CONTINUED_AMOUNT")]
|
|
public int ContinuedAmount { get; set; }
|
|
}
|
|
}
|