52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
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<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; }
|
|
|
|
}
|
|
}
|