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.
88 lines
2.1 KiB
C#
88 lines
2.1 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 Uy
|
|
{
|
|
|
|
/// <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 = "spdset")]
|
|
public string Spdset { get; set; }
|
|
|
|
/// <summary>
|
|
/// 水泵启动
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "dryrunningsta")]
|
|
public string Dryrunningsta { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电压值
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "volt")]
|
|
public string Volt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模式启动
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "motorsta")]
|
|
public string Motorsta { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电源启动
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "powersta")]
|
|
public string Powersta { get; set; }
|
|
|
|
/// <summary>
|
|
/// 温度启动
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "tempsta")]
|
|
public string Tempsta { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "error")]
|
|
public string Error { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际转速
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "realrpm")]
|
|
public string Realrpm { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reqid")]
|
|
public string Reqid { get; set; }
|
|
|
|
|
|
}
|
|
}
|