using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace ProductionSystem_Model.DbModel
{
///
/// 曲线表
///
[SugarTable("t_curve")]
public class T_Curve
{
[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; }
///
/// 电压
///
[SugarColumn(ColumnName = "voltage")]
public string Voltage { get; set; }
///
/// 电流
///
[SugarColumn(ColumnName = "electricity")]
public string Electricity { get; set; }
}
}