using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.QcMgr.Entities { /// /// 不良原因字典 /// [SugarTable("qc_error_cause")] public partial class QcErrorCause : BaseEntity { public QcErrorCause() { id = SnowflakeIdHelper.NextId(); } /// /// 编号 /// public string? code { get; set; } /// /// 名称 /// public string? name { get; set; } /// /// 状态 /// public string? status { get; set; } /// /// 备注 /// public string? remark { 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? extras { get; set; } } }