You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ProductionSystem/ProductionSystem_Model/DbModel/T_Result2.cs

66 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace ProductionSystem_Model.DbModel
{
/// <summary>
/// 结果表2
/// </summary>
[SugarTable("t_result2")]
public class T_Result2
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
[SugarColumn(ColumnName = "product_type")]
public string ProductType { get; set; }
[SugarColumn(ColumnName = "product_barcode")]
public string ProductBarcode { get; set; }
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
[SugarColumn(ColumnName = "step")]
public string Step { get; set; }
/// <summary>
/// 电压
/// </summary>
[SugarColumn(ColumnName = "voltage")]
public string Voltage { get; set; }
/// <summary>
/// 电压状态
/// </summary>
[SugarColumn(ColumnName = "voltage_state")]
public string VoltageState { get; set; }
/// <summary>
/// 电流
/// </summary>
[SugarColumn(ColumnName = "electricity")]
public string Electricity { get; set; }
[SugarColumn(ColumnName = "electricity_state")]
public string ElectricityState { get; set; }
/// <summary>
/// 泄露
/// </summary>
[SugarColumn(ColumnName = "xll")]
public string Xll { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(ColumnName = "xllzt")]
public string Xllzt { get; set; }
}
}