using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace ZR.Model.MES.qu { /// /// 检测项 /// [SugarTable("qc_inspectionitem")] public class QcInspectionitem { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public int Id { get; set; } /// /// 检测编码 /// [SugarColumn(ColumnName = "inspection_code")] public string InspectionCode { get; set; } /// /// 检测名称 /// [SugarColumn(ColumnName = "inspection_name")] public string InspectionName { get; set; } /// /// 检测类别 /// [SugarColumn(ColumnName = "inspection_type")] public string InspectionType { get; set; } /// /// 检测类别 /// [SugarColumn(ColumnName = "inspectionModule")] public string InspectionModule { get; set; } /// /// 序号 /// [SugarColumn(ColumnName = "order_")] public int? Order { get; set; } /// /// 租户号 /// [SugarColumn(ColumnName = "TENANT_ID")] public string TenantId { get; set; } /// /// 乐观锁 /// [SugarColumn(ColumnName = "REVISION")] public int? Revision { 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; } } }