62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
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; }
|
|
}
|
|
}
|