预备signalr
This commit is contained in:
61
ZR.Model/MES/qc/QcAgaininspectionUselessnum.cs
Normal file
61
ZR.Model/MES/qc/QcAgaininspectionUselessnum.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.qc
|
||||
{
|
||||
/// <summary>
|
||||
/// 二检报废表
|
||||
///</summary>
|
||||
[SugarTable("qc_againinspection_uselessnum")]
|
||||
public class QcAgaininspectionUselessnum
|
||||
{
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// fk_检测项
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "fk_inspectionItem_id")]
|
||||
public string FkInspectionitemId { get; set; }
|
||||
/// <summary>
|
||||
/// fk_终检id
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "fk_FQC_id")]
|
||||
public string FkFqcId { get; set; }
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "productName")]
|
||||
public string ProductName { get; set; }
|
||||
/// <summary>
|
||||
/// 数量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "number")]
|
||||
public int? 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