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_record")]
|
|
public class QcAgaininspectionRecord
|
|
{
|
|
/// <summary>
|
|
/// 流水号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 工单id
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "fk_workorder_id")]
|
|
public string FkWorkorderId { get; set; }
|
|
/// <summary>
|
|
/// 检测项id
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "fk_inpection_id")]
|
|
public string FkInpectionId { get; set; }
|
|
/// <summary>
|
|
/// 模块
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "InspectionModule")]
|
|
public string InspectionModule { get; set; }
|
|
/// <summary>
|
|
/// 数值
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "counter")]
|
|
public int? Counter { 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; }
|
|
}
|
|
}
|