using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.BasicData.Entities;
///
/// 生产异常
///
[SugarTable("bas_productionanmaly")]
public partial class BasProductionanmaly : BaseEntity
{
public BasProductionanmaly()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 排序
///
public long? ordinal { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 删除时间
///
public DateTime? delete_time { get; set; }
///
/// 扩展字段
///
public string? extras { get; set; }
///
/// 删除用户
///
public string? delete_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 有效标志
///
public int? status { get; set; }
///
/// 异常编码
///
public string? anomaly_id { get; set; }
///
/// 异常名称
///
public string? anomaly_name { get; set; }
///
/// 异常类型
///
public string? anomaly_type { get; set; }
///
/// 状态说明
///
public string? anomaly_state { get; set; }
}