品质模块

This commit is contained in:
qianjiawei
2023-06-09 17:37:42 +08:00
parent 1f75188668
commit 21115d3b29
16 changed files with 816 additions and 71 deletions

View File

@@ -9,8 +9,9 @@ using SqlSugar;
namespace Tnb.QcMgr.Entities
{
/// <summary>
/// 质检方案主表
/// 质检方案
/// </summary>
[SugarTable("qc_check_plan_h")]
public partial class QcCheckPlanH : BaseEntity<string>
@@ -19,6 +20,12 @@ namespace Tnb.QcMgr.Entities
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 编号
/// </summary>
public string? code { get; set; }
/// <summary>
/// 名称
/// </summary>
@@ -83,5 +90,8 @@ namespace Tnb.QcMgr.Entities
/// 修改时间
/// </summary>
public DateTime? modify_time { get; set; }
}
}
}