namespace ZR.Model.MES.wms
{
///
/// AGV配置
///
[SugarTable("agv_config")]
public class AgvConfig
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// agv名称
///
[SugarColumn(ColumnName = "agv_name")]
public string AgvName { get; set; }
///
/// agv编号
///
[SugarColumn(ColumnName = "agv_code")]
public string AgvCode { get; set; }
///
/// 功能
///
public string Function { 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; }
}
}