using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MES.Service.Modes
{
///
///
///
[SugarTable("IQC_BEFORE")]
public class IqcBefore
{
///
///
///
[SugarColumn(ColumnName="ID" ,IsPrimaryKey = true )]
public decimal Id { get; set; }
///
///
///
[SugarColumn(ColumnName="SID" )]
public decimal? Sid { get; set; }
///
///
///
[SugarColumn(ColumnName="ITEM_ID" )]
public decimal? ItemId { get; set; }
///
///
///
[SugarColumn(ColumnName="PID" )]
public decimal? Pid { get; set; }
}
}