Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdCancelClosedownRecord.cs
2023-05-22 19:17:14 +08:00

77 lines
1.6 KiB
C#

using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
/// <summary>
/// 异常停机
/// </summary>
[SugarTable("prd_cancel_closedown_record")]
public partial class PrdCancelClosedownRecord : BaseEntity<string>
{
public PrdCancelClosedownRecord()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 停机类别
/// </summary>
public string? catetory { get; set; }
/// <summary>
/// 停机原因
/// </summary>
public string? reason { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? remark { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// 修改人
/// </summary>
public string? modify_id { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? modify_time { get; set; }
/// <summary>
/// 停机开始时间
/// </summary>
public DateTime? closedown_start_time { get; set; }
/// <summary>
/// 停机结束时间
/// </summary>
public DateTime? closedown_end_time { get; set; }
/// <summary>
/// 停机时间
/// </summary>
public decimal? closedown_time { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string eqp_code { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string eqp_name { get; set; }
}