using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.QcMgr.Entities { /// /// spc子表 /// [SugarTable("qc_spc_d")] public partial class QcSpcD : BaseEntity { public QcSpcD() { id = SnowflakeIdHelper.NextId(); } /// /// 主表id /// public string? mainid { get; set; } /// /// 检验时间 /// public string? checktime { get; set; } /// /// 批次 /// public string? batch { get; set; } /// /// 数据 /// public string? data { get; set; } /// /// 检查数量 /// public int? checknum { get; set; } /// /// 不良品数量 /// public int? defectivenum { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } } }