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 Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 拆分的SAP BOM 信息
|
|
/// </summary>
|
|
[SugarTable("OLDBOX_FOAMDATA", "AUCMA_SCADA")]
|
|
public class OldBoxFoamData
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
public int ObjId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 夹具箱型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "FIXTUREBOXTYPE")]
|
|
public string Fixtureboxtype { get; set; }
|
|
|
|
/// <summary>
|
|
/// 夹具状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "FIXTURESTATUS")]
|
|
public string Fixturestatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCTION")]
|
|
public float Production { get; set; }
|
|
|
|
/// <summary>
|
|
/// 固化时间设定值
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CURINGTIMESETTINGVALUE")]
|
|
public string CuringTimeSettingValue { get; set; }
|
|
/// <summary>
|
|
/// 固化时间实际值
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ACTUALVALUE")]
|
|
public string ActualValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CREATED_TIME")]
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
|
public DateTime UpdatedTime { get; set; }
|
|
}
|
|
}
|