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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Linq ;
using System.Text ;
using SqlSugar ;
namespace SlnMesnac.Repository
{
///<summary>
///AGV状态实体类
///</summary>
[SugarTable("AGVState")]
public partial class AGVState
{
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "ID")]
public int id { get ; set ; }
/// <summary>
/// Desc:AGV编号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "AGVNo")]
public string agvno { get ; set ; }
/// <summary>
/// Desc:AGV类型 1: DeliverAGV 2: AMRAGV
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "AGVType")]
public string agvtype { get ; set ; }
/// <summary>
/// Desc:任务编号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "TaskNo")]
public string taskno { get ; set ; }
/// <summary>
/// Desc:任务状态
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "TaskState")]
public string taskstate { get ; set ; }
/// <summary>
/// Desc:AGV报警状态
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "AGVAlarmState")]
public string agvalarmstate { get ; set ; }
/// <summary>
/// Desc:AGV工作状态
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "AGVWorkState")]
public string agvworkstate { get ; set ; }
/// <summary>
/// Desc:刷新时间
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "RefreshTime")]
public DateTime refreshtime { get ; set ; }
/// <summary>
/// Desc:码筐计数
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(ColumnName = "StackCount")]
public int stackcount { get ; set ; }
}
}