38 lines
884 B
C#
38 lines
884 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
/// <summary>
|
|
/// 质检项清单中间表
|
|
/// </summary>
|
|
[SugarTable("qc_check_items_r")]
|
|
public partial class QcCheckItemsR : BaseEntity<string>
|
|
{
|
|
public QcCheckItemsR()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 质检项清单编号
|
|
/// </summary>
|
|
public string? itemshid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 质检项分类编号
|
|
/// </summary>
|
|
public string? typeid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 质检项编号
|
|
/// </summary>
|
|
public string? itemid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 质检项清单子表编号
|
|
/// </summary>
|
|
public string? itemsdid { get; set; }
|
|
|
|
}
|
|
} |