namespace ZR.Model.MES.wms { /// /// agv位置表 /// [SugarTable("agv_location")] public class AgvLocation { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 区域 /// [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; } /// /// 创建人 /// [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; } } }