using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities { [SugarTable("andon_records")] public partial class AndonRecords : BaseEntity { public AndonRecords() { id = SnowflakeIdHelper.NextId(); } /// /// 关联工单 /// public string? mo_id { get; set; } /// /// 故障类别 /// public string? breakdown_type { get; set; } /// /// 故障 /// 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; } } }