namespace NewPdaSqlServer.entity
{
using SqlSugar;
///
/// 到货检验明细视图实体
///
[SugarTable("v_dhmx")]
public class vDhmx
{
///
/// 父级GUID
///
[SugarColumn(ColumnName = "hGuid")]
public string ParentGuid { get; set; }
///
/// 明细GUID
///
[SugarColumn(ColumnName = "dhmxGuid")]
public string DetailGuid { get; set; }
///
/// 数量
///
[SugarColumn(ColumnName = "quantity")]
public decimal Quantity { get; set; }
///
/// 免检标识
///
[SugarColumn(ColumnName = "免检")]
public string ExemptInspection { get; set; }
///
/// 检验状态
///
[SugarColumn(ColumnName = "检验状态")]
public string InspectionStatus { get; set; }
///
/// IQC提交状态
///
[SugarColumn(ColumnName = "iqc提交")]
public int IqcSubmission { get; set; }
///
/// 检验结果
///
[SugarColumn(ColumnName = "检验结果")]
public string InspectionResult { get; set; }
///
/// 判定结果
///
[SugarColumn(ColumnName = "判定结果")]
public string JudgmentResult { get; set; }
///
/// 处理意见
///
[SugarColumn(ColumnName = "处理意见")]
public string HandlingSuggestion { get; set; }
///
/// 挑选数量
///
[SugarColumn(ColumnName = "挑选数量")]
public decimal? SelectionQuantity { get; set; }
///
/// 选别类别
///
[SugarColumn(ColumnName = "选别类别")]
public string SelectionType { get; set; }
///
/// 是否能入库 (1:能入库 0:不能入库)
///
[SugarColumn(ColumnName = "是否能入库")]
public int CanStore { get; set; }
}
}