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