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.6 KiB
C#
60 lines
1.6 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Aucma.Scada.Model.domain
|
|
{
|
|
/// <summary>
|
|
/// 物料完成记录
|
|
/// </summary>
|
|
[SugarTable("MATERIAL_COMPLETION", "AUCMA_SCADA")]
|
|
public class MaterialCompletion
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true, OracleSequenceName = "SEQ_MATERIAL_COMPLETION")]
|
|
public int ObjId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_CODE")]
|
|
public string OrderCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料条码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_BARCODE")]
|
|
public string MaterialBarcode { 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 = "STATION_NAME")]
|
|
public string StationName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "COMPLETE_DATE")]
|
|
public DateTime CompleteDate { get; set; }
|
|
/// <summary>
|
|
/// 工单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
public string planCode { get; set; }
|
|
}
|
|
}
|