using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.QcMgr.Entities { [SugarTable("qc_check_item")] public class QcCheckItem : BaseEntity { public QcCheckItem() { id = SnowflakeIdHelper.NextId(); } public string? code { get; set; } public string? name { get; set; } public string? type { get; set; } public string? attachment { 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; } public string? remark { get; set; } } }