品质模块
This commit is contained in:
38
QcMgr/Tnb.QcMgr.Entities/Entity/QcCheckPlanAdd.cs
Normal file
38
QcMgr/Tnb.QcMgr.Entities/Entity/QcCheckPlanAdd.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user