品质模块

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

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.QcMgr.Entities
{
/// <summary>
/// 质检方案附加信息
/// </summary>
[SugarTable("qc_check_plan_add")]
public partial class QcCheckPlanAdd : BaseEntity<string>
{
public QcCheckPlanAdd()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 触发类型
/// </summary>
public string? triggertype { get; set; }
/// <summary>
/// 触发内容
/// </summary>
public string? content { get; set; }
/// <summary>
/// 主表编号
/// </summary>
public string? mainid { get; set; }
}
}