Files
2023-11-06 19:35:59 +08:00

47 lines
1.3 KiB
C#

using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
[SugarTable("andon_records")]
public partial class AndonRecords : BaseEntity<string>
{
public AndonRecords()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 关联工单
/// </summary>
public string? mo_id { get; set; }
/// <summary>
/// 故障类别
/// </summary>
public string? breakdown_type { get; set; }
/// <summary>
/// 故障
/// </summary>
public string? breakdown { get; set; }
public string? create_id { get; set; }
public DateTime? create_time { get; set; }
public string? modify_id { get; set; }
public DateTime? modify_time { get; set; }
public string? remark { get; set; }
public string? andon_type_id { get; set; }
public string? andon_info_id { get; set; }
public string? repair_id { get; set; }
public DateTime? response_time { get; set; }
public DateTime? start_repair_time { get; set; }
public DateTime? end_repair_time { get; set; }
public DateTime? confirm_time { get; set; }
public string status { get; set; }
}
}