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.
112 lines
2.8 KiB
C#
112 lines
2.8 KiB
C#
using SqlSugar;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProductionSystem_Model
|
|
{
|
|
public partial class Stone
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 插入时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime")]
|
|
public DateTime? Createdtime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求模式
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "moderequest")]
|
|
public string Moderequest { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "initialreq")]
|
|
public string Initialreq { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reqid")]
|
|
public string Reqid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 反馈模式
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "actualmode")]
|
|
public string Actualmode { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "hldtrqactive")]
|
|
public string Hldtrqactive { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "moveactive")]
|
|
public string Moveactive { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "initialactive")]
|
|
public string Initialactive { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "initialrequired")]
|
|
public string Initialrequired { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "undervoltage")]
|
|
public string Undervoltage { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "overvoltage")]
|
|
public string Overvoltage { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "overtemperror")]
|
|
public string Overtemperror { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "responseerror")]
|
|
public string Responseerror { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "blockageerror")]
|
|
public string Blockageerror { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "overcurrenterror")]
|
|
public string Overcurrenterror { get; set; }
|
|
|
|
|
|
}
|
|
}
|