using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.QcMgr.Entities { /// /// 质检方案 /// [SugarTable("qc_check_plan_h")] public partial class QcCheckPlanH : BaseEntity { public QcCheckPlanH() { id = SnowflakeIdHelper.NextId(); } /// /// 编号 /// public string? code { get; set; } /// /// 名称 /// public string? name { get; set; } /// /// 状态 /// public string? status { get; set; } /// /// 质检类型 /// public string? checktype { get; set; } /// /// 报告填写数量类型 /// public string? numtype { get; set; } /// /// 分页方式 /// public string? pagetype { get; set; } /// /// 质检项填写规则 /// public string? writerule { get; set; } /// /// 特别提醒 /// public string? remind { get; set; } /// /// 附件 /// public string? attachment { get; set; } /// /// 可添加多种物料 /// public string? isaddmul { 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; } } }