2025-02-22 14:31:52 +08:00

111 lines
2.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DOAN.Model.Bydlms
{
/// <summary>
/// 设备状态
/// </summary>
[SugarTable("byd_device")]
public class BydDevice
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
/// <summary>
/// 工厂编码
/// </summary>
public string FactoryCode { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 机台编码
/// </summary>
public string MachineCode { get; set; }
/// <summary>
/// 产线编码
/// </summary>
public string LineCode { get; set; }
/// <summary>
/// 工位编码
/// </summary>
public string StationCode { get; set; }
/// <summary>
/// 机台状态编码
/// </summary>
public string MachineStatusCode { get; set; }
/// <summary>
/// 数采设备编码
/// </summary>
public string AcquisitCod { get; set; }
/// <summary>
/// 接受时间
/// </summary>
public DateTime? MachineStatusBegin { get; set; }
/// <summary>
/// 处理时间
/// </summary>
public DateTime? MachineStatusEnd { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? EditTime { get; set; }
/// <summary>
/// 状态0开始1结束
/// </summary>
public int? StatusType { get; set; }
/// <summary>
/// 系统类别
/// </summary>
public string Type { get; set; }
/// <summary>
/// 系统状态
/// </summary>
public string Status { get; set; }
/// <summary>
/// 系统备注
/// </summary>
public string Remark { 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; }
}
}