using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 仓库 /// [SugarTable("wms_warehouse")] public class WmsWarehouse { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 编号 /// [SugarColumn(ColumnName = "warehouse_no")] public string WarehouseNo { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "warehouse_name")] public string WarehouseName { get; set; } /// /// 删除标识 /// 默认值: 0 /// [SugarColumn(ColumnName = "del_flag")] public byte DelFlag { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public long? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "update_by")] public long? UpdateBy { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } } }