86 lines
2.6 KiB
C#
86 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.DW_production_trace.DWD.U30
|
|
{
|
|
/// <summary>
|
|
/// 数据仓库_事实明细层_U30_OP10_实验室数据
|
|
/// </summary>
|
|
[SugarTable("dwd_u30_op10_laboratorydata")]
|
|
[TenantAttribute("3")]
|
|
public class DwdU30Op10LaboratoryData
|
|
{
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "supplier")]
|
|
public string Supplier { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "supplierName")]
|
|
public string SupplierName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "vehicleType")]
|
|
public string VehicleType { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "partNumber")]
|
|
public string PartNumber { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "partName")]
|
|
public string PartName { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "variance")]
|
|
public string Variance { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "station")]
|
|
public string Station { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "parameter")]
|
|
public string Parameter { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "value")]
|
|
public double? Value { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "lower_limit")]
|
|
public double? LowerLimit { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "upper_limit")]
|
|
public double? UpperLimit { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "inTime")]
|
|
public DateTime? InTime { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "BTV")]
|
|
public string BTV { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_Id")]
|
|
public string FId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_CreatorTime")]
|
|
public DateTime? FCreatorTime { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_CreatorUserId")]
|
|
public string FCreatorUserId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_LastModifyTime")]
|
|
public DateTime? FLastModifyTime { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_LastModifyUserId")]
|
|
public string FLastModifyUserId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_DeleteTime")]
|
|
public DateTime? FDeleteTime { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_DeleteUserId")]
|
|
public string FDeleteUserId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "F_DeleteMark")]
|
|
public bool? FDeleteMark { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "new_station")]
|
|
public string NewStation { get; set; }
|
|
}
|
|
}
|