|
|
|
@ -16,8 +16,8 @@ namespace Admin.Core.Model
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
///</summary>
|
|
|
|
|
//[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_RECORD_SIDEPANEL_COMPLATE")]
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
[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>
|
|
|
|
|
/// 计划编号
|
|
|
|
@ -39,25 +39,25 @@ namespace Admin.Core.Model
|
|
|
|
|
///</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 string DeviceStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal? DeviceStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "PRODUCTION_BEAT")]
|
|
|
|
|
public string ProductionBeat { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal? ProductionBeat { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
///</summary>
|
|
|
|
@ -67,6 +67,6 @@ namespace Admin.Core.Model
|
|
|
|
|
/// 是否标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "IS_FLAG")]
|
|
|
|
|
public string IsFlag { get; set; }
|
|
|
|
|
public decimal? IsFlag { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|