using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace ZR.Model.MES.wms
{
///
/// 仓库信息
///
[SugarTable("wm_info")]
public class WmInfo
{
///
/// 主键
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 仓库编号
///
[SugarColumn(ColumnName = "warehouse_num")]
public int? WarehouseNum { get; set; }
///
/// 仓库名称
///
[SugarColumn(ColumnName = "warehouse")]
public string Warehouse { get; set; }
///
/// 货架
///
[SugarColumn(ColumnName = "shelf")]
public string Shelf { get; set; }
///
/// 层号
///
[SugarColumn(ColumnName = "layer")]
public int? Layer { get; set; }
///
/// 库位名称
///
[SugarColumn(ColumnName = "location")]
public string Location { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { 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; }
}
}