using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.qc
{
///
/// 二检报废表
///
[SugarTable("qc_againinspection_uselessnum")]
public class QcAgaininspectionUselessnum
{
///
/// 流水号
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// fk_检测项
///
[SugarColumn(ColumnName = "fk_inspectionItem_id")]
public string FkInspectionitemId { get; set; }
///
/// fk_终检id
///
[SugarColumn(ColumnName = "fk_FQC_id")]
public string FkFqcId { get; set; }
///
/// 产品名称
///
[SugarColumn(ColumnName = "productName")]
public string ProductName { get; set; }
///
/// 数量
///
[SugarColumn(ColumnName = "number")]
public int? Number { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}