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.
104 lines
2.6 KiB
C#
104 lines
2.6 KiB
C#
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)]
|
|
/// <summary>
|
|
/// 主键;主键
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime")]
|
|
|
|
public DateTime? Createdtime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 设计开度请求
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "positionrequest")]
|
|
public string Positionrequest { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使能请求
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "enablerequest")]
|
|
public string Enablerequest { get; set; }
|
|
/// <summary>
|
|
/// 初始化请求
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnName = "initrequest")]
|
|
public string Initrequest { get; set; }
|
|
|
|
/// <summary>
|
|
/// 响应错误
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "responseerror")]
|
|
public string Responseerror { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前初始化状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "currentinitstate")]
|
|
public string Currentinitstate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前运行状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "runstate")]
|
|
public string Runstate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 故障状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "faultstate")]
|
|
public string Faultstate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电压状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "voltagestate")]
|
|
public string Voltagestate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 温度警报
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "temperaturewarn")]
|
|
public string Temperaturewarn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前位置
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "currentposition")]
|
|
public string Currentposition { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 请求Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reqid")]
|
|
public string Reqid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string Remark { get; set; }
|
|
|
|
|
|
}
|
|
}
|