using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using SqlSugar;
|
|
namespace NewPdaSqlServer.entity
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SugarTable("MES_QA_ITEMS_DETECT_DETAIL12")]
|
public class MesQaItemsDetectDetail12
|
{
|
/// <summary>
|
///
|
///</summary>
|
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
|
public Guid Guid { get; set; }
|
|
/// <summary>
|
/// 父亲Guid
|
///</summary>
|
[SugarColumn(ColumnName = "parent_guid")]
|
public Guid? ParentGuid { get; set; }
|
|
/// <summary>
|
/// 爷爷Guid
|
///</summary>
|
[SugarColumn(ColumnName = "grandpa_guid")]
|
public Guid? GrandpaGuid { get; set; }
|
|
/// <summary>
|
/// 检验结果
|
///</summary>
|
[SugarColumn(ColumnName = "fcheck_resu")]
|
public string? FcheckResu { get; set; }
|
|
/// <summary>
|
/// 检验项目
|
///</summary>
|
[SugarColumn(ColumnName = "fcheck_item")]
|
public string? FcheckItem { get; set; }
|
|
/// <summary>
|
/// 物料条码
|
///</summary>
|
[SugarColumn(ColumnName = "item_barcode")]
|
public string? ItemBarcode { get; set; }
|
|
/// <summary>
|
///
|
///</summary>
|
[SugarColumn(ColumnName = "create_date")]
|
public DateTime? CreateDate { get; set; }
|
|
/// <summary>
|
/// 判定标志
|
///</summary>
|
[SugarColumn(ColumnName = "fstand")]
|
public string? Fstand { get; set; }
|
|
/// <summary>
|
/// 生成人
|
///</summary>
|
[SugarColumn(ColumnName = "lastupdate_by")]
|
public string? LastupdateBy { get; set; }
|
|
/// <summary>
|
///
|
///</summary>
|
[SugarColumn(ColumnName = "create_by")]
|
public string? CreateBy { get; set; }
|
|
[SugarColumn(IsIgnore = true)] public int? count { get; set; }
|
}
|
}
|