namespace DOAN.Model.Business { /// /// 力矩检测表 /// [SugarTable("qc_torquedetection")] public class QcTorquedetection { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 装配线 /// public string Linecode { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "production_name")] public string ProductionName { get; set; } /// /// 检定人 /// [SugarColumn(ColumnName = "check_name")] public string CheckName { get; set; } /// /// 年 /// public int? Year { get; set; } /// /// 月 /// public int? Month { get; set; } /// /// 工序号 /// [SugarColumn(ColumnName = "process_no")] public string ProcessNo { get; set; } /// /// 扭矩标准(N.m)上限 /// public decimal Uplimit { get; set; } /// /// 扭矩标准(N.m)下限 /// public decimal Lowlimit { get; set; } /// /// 起子编号 /// [SugarColumn(ColumnName = "screwdriver_number")] public string ScrewdriverNumber { get; set; } /// /// 检测时期(上午,下午) /// public string Testingperiod { get; set; } /// /// 检测时间 /// public DateTime? TestTime { get; set; } /// /// 1 /// public string No1 { get; set; } /// /// 2 /// public string No2 { get; set; } /// /// 3 /// public string No3 { get; set; } /// /// 4 /// public string No4 { get; set; } /// /// 5 /// public string No5 { get; set; } /// /// 6 /// public string No6 { get; set; } /// /// 7 /// public string No7 { get; set; } /// /// 8 /// public string No8 { get; set; } /// /// 9 /// public string No9 { get; set; } /// /// 10 /// public string No10 { get; set; } /// /// 11 /// public string No11 { get; set; } /// /// 12 /// public string No12 { get; set; } /// /// 13 /// public string No13 { get; set; } /// /// 14 /// public string No14 { get; set; } /// /// 15 /// public string No15 { get; set; } /// /// 16 /// public string No16 { get; set; } /// /// 17 /// public string No17 { get; set; } /// /// 18 /// public string No18 { get; set; } /// /// 19 /// public string No19 { get; set; } /// /// 20 /// public string No20 { get; set; } /// /// 21 /// public string No21 { get; set; } /// /// 22 /// public string No22 { get; set; } /// /// 23 /// public string No23 { get; set; } /// /// 24 /// public string No24 { get; set; } /// /// 25 /// public string No25 { get; set; } /// /// 26 /// public string No26 { get; set; } /// /// 27 /// public string No27 { get; set; } /// /// 28 /// public string No28 { get; set; } /// /// 29 /// public string No29 { get; set; } /// /// 30 /// public string No30 { get; set; } /// /// 31 /// public string No31 { get; set; } /// /// 32 /// public string No32 { 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; } } }