56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
namespace ZR.Model.MES.qc
|
|
{
|
|
/// <summary>
|
|
/// 初检瑕疵
|
|
///</summary>
|
|
[SugarTable("qc_firstinspection_default")]
|
|
public class QcFirstinspectionDefault
|
|
{
|
|
/// <summary>
|
|
/// 流水号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id")]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 产品名称
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "productName")]
|
|
public string ProductName { get; set; }
|
|
/// <summary>
|
|
/// fk_检测项
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "fk_inspectionItem_id")]
|
|
public string FkInspectionitemId { get; set; }
|
|
/// <summary>
|
|
/// fk_FQC_id
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "fk_FQC_id")]
|
|
public string FkFqcId { get; set; }
|
|
/// <summary>
|
|
/// 数量
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "number")]
|
|
public string Number { get; set; }
|
|
/// <summary>
|
|
/// 创建人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
/// <summary>
|
|
/// 更新人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "UPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
/// <summary>
|
|
/// 更新时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
}
|
|
}
|