39 lines
855 B
C#
39 lines
855 B
C#
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; }
|
|
}
|
|
}
|