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.
73 lines
2.2 KiB
C#
73 lines
2.2 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("RECORD_SIDEPANEL_COMPLATE", "AUCMA_SCADA")]
|
|
public class RecordSidePanelComplate
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_RECORD_SIDEPANEL_COMPLATE")]
|
|
//[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int ObjId { get; set; }
|
|
/// <summary>
|
|
/// 计划编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
public string PlanCode { get; set; }
|
|
/// <summary>
|
|
/// 物料编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_CODE")]
|
|
public string MaterialCode { get; set; }
|
|
/// <summary>
|
|
/// 计划工位
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "PRODUCTLINE_CODE")]
|
|
public string ProductlineCode { get; set; }
|
|
/// <summary>
|
|
/// 完成数量
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "COMPLETE_AMOUNT")]
|
|
public int CompleteAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下线数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OFFLINE_AMOUNT")]
|
|
public int OffLineAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际产量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OUTPUT_AMOUNT")]
|
|
public int OutPutAmount { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "DEVICE_STATUS")]
|
|
public decimal? DeviceStatus { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "PRODUCTION_BEAT")]
|
|
public decimal? ProductionBeat { get; set; }
|
|
|
|
/// <summary>
|
|
/// 记录时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "RECORD_TIME")]
|
|
public DateTime? RecordTime { get; set; }
|
|
/// <summary>
|
|
/// 是否标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "IS_FLAG")]
|
|
public decimal? IsFlag { get; set; }
|
|
}
|
|
}
|