2024-06-07 11:04:26 +08:00
|
|
|
|
namespace ZR.Model.MES.mm
|
2024-04-25 08:47:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// agv位置表
|
|
|
|
|
|
/// </summary>
|
2024-04-26 11:20:39 +08:00
|
|
|
|
[SugarTable("mm_agv_location")]
|
|
|
|
|
|
public class MmAgvLocation
|
2024-04-25 08:47:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-26 11:20:39 +08:00
|
|
|
|
/// AreaCode
|
2024-04-25 08:47:25 +08:00
|
|
|
|
/// </summary>
|
2024-04-26 11:20:39 +08:00
|
|
|
|
[SugarColumn(ColumnName = "area_code")]
|
2024-04-25 08:47:25 +08:00
|
|
|
|
public int? AreaCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 区域
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Area { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 类型(0: 起点,1:终点)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int? Type { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 坐标
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Coordinate { get; set; }
|
|
|
|
|
|
|
2024-04-26 11:20:39 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态(0,无托盘,1有托盘,2未知)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
|
2024-04-25 08:47:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建人
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 更新人
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 更新时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|