using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProductionSystem_Model.DbModel
{
public partial class Exv
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
///
/// 主键;主键
///
public string Id { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "createdtime")]
public DateTime? Createdtime { get; set; }
///
/// 设计开度请求
///
[SugarColumn(ColumnName = "positionrequest")]
public string Positionrequest { get; set; }
///
/// 使能请求
///
[SugarColumn(ColumnName = "enablerequest")]
public string Enablerequest { get; set; }
///
/// 初始化请求
///
[SugarColumn(ColumnName = "initrequest")]
public string Initrequest { get; set; }
///
/// 响应错误
///
[SugarColumn(ColumnName = "responseerror")]
public string Responseerror { get; set; }
///
/// 当前初始化状态
///
[SugarColumn(ColumnName = "currentinitstate")]
public string Currentinitstate { get; set; }
///
/// 当前运行状态
///
[SugarColumn(ColumnName = "runstate")]
public string Runstate { get; set; }
///
/// 故障状态
///
[SugarColumn(ColumnName = "faultstate")]
public string Faultstate { get; set; }
///
/// 电压状态
///
[SugarColumn(ColumnName = "voltagestate")]
public string Voltagestate { get; set; }
///
/// 温度警报
///
[SugarColumn(ColumnName = "temperaturewarn")]
public string Temperaturewarn { get; set; }
///
/// 当前位置
///
[SugarColumn(ColumnName = "currentposition")]
public string Currentposition { get; set; }
///
/// 请求Id
///
[SugarColumn(ColumnName = "reqid")]
public string Reqid { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
}
}