预备signalr
This commit is contained in:
59
ZR.Model/MES/qc/QcFirstinspectionDefault.cs
Normal file
59
ZR.Model/MES/qc/QcFirstinspectionDefault.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SqlSugar;
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user