53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarTable("prd_cancel_closedown_reason")]
|
|
public partial class PrdCancelClosedownReason : BaseEntity<string>
|
|
{
|
|
public PrdCancelClosedownReason()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 停机类别字典id
|
|
/// </summary>
|
|
public string? category_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停机原因编码
|
|
/// </summary>
|
|
public string? reason_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停机原因
|
|
/// </summary>
|
|
public string? reason { 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; }
|
|
|
|
}
|