73 lines
1.8 KiB
C#
73 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.MES.dev
|
|
{
|
|
/// <summary>
|
|
/// 设备保全率
|
|
/// </summary>
|
|
[SugarTable("device_uptime")]
|
|
public class DeviceUptime
|
|
{
|
|
/// <summary>
|
|
/// 主键id
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标率
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "target_value")]
|
|
public string targetValue{ get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际率
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "actual_value")]
|
|
public string ActualValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车间
|
|
/// </summary>
|
|
public string Workshop { get; set; }
|
|
|
|
/// <summary>
|
|
/// 填写时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fill_time")]
|
|
public string FillTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类别区分
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
}
|
|
}
|