using SqlSugar; using System; using System.Collections.Generic; using System.Text; #region << 版 本 注 释 >> /*-------------------------------------------------------------------- * 版权所有 (c) 2024 WenJY 保留所有权利。 * CLR版本:4.0.30319.42000 * 机器名称:LAPTOP-E0N2L34V * 命名空间:SlnMesnac.Model.domain * 唯一标识:8c0a747f-0ee1-4c2a-957a-95ff8345896f * * 创建者:WenJY * 电子邮箱:wenjy@mesnac.com * 创建时间:2024-04-09 16:17:47 * 版本:V1.0.0 * 描述: * *-------------------------------------------------------------------- * 修改人: * 时间: * 修改说明: * * 版本:V1.0.0 *--------------------------------------------------------------------*/ #endregion << 版 本 注 释 >> namespace SlnMesnac.Model.domain { [SugarTable("wms_base_location"), TenantAttribute("mes")] public class WmsBaseLocation { /// /// 库位ID /// [SugarColumn(ColumnName = "location_id", IsPrimaryKey = true, IsIdentity = true)] public long LocationId { get; set; } /// /// 仓库ID /// [SugarColumn(ColumnName = "warehouse_id")] public long WarehouseId { get; set; } /// /// AGV位置代码 /// [SugarColumn(ColumnName = "agv_position_code")] public string AgvPositionCode { get; set; } /// /// 仓库楼层 /// [SugarColumn(ColumnName = "warehouse_floor")] public int WarehouseFloor { get; set; } /// /// 库位代码 /// [SugarColumn(ColumnName = "location_code")] public string LocationCode { get; set; } /// /// 容器代码 /// [SugarColumn(ColumnName = "container_code")] public string ContainerCode { get; set; } /// /// 行 /// [SugarColumn(ColumnName = "loc_row")] public int? LocRow { get; set; } /// /// 列 /// [SugarColumn(ColumnName = "loc_column")] public int? LocColumn { get; set; } /// /// 层数 /// [SugarColumn(ColumnName = "layer_num")] public int? LayerNum { get; set; } /// /// 深位1 浅位2 /// [SugarColumn(ColumnName = "loc_deep")] public int? LocDeep { get; set; } /// /// 是否启用 /// [SugarColumn(ColumnName = "active_flag")] public string ActiveFlag { get; set; } // '1' or other values /// /// 手动标记 /// [SugarColumn(ColumnName = "manual_flag")] public string ManualFlag { get; set; } /// /// 返回标记 /// [SugarColumn(ColumnName = "return_flag")] public string ReturnFlag { get; set; } /// /// 数量限制 /// [SugarColumn(ColumnName = "qty_limit")] public decimal? QtyLimit { get; set; } /// /// 入库标记 /// [SugarColumn(ColumnName = "instock_flag")] public string InstockFlag { get; set; } /// /// 出库标记 /// [SugarColumn(ColumnName = "outstock_flag")] public string OutstockFlag { get; set; } /// /// 库位状态 /// [SugarColumn(ColumnName = "location_status")] public string LocationStatus { get; set; } // '1' or other values /// /// 批次混合 /// [SugarColumn(ColumnName = "batch_mix")] public string BatchMix { get; set; } // '0' or other values /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "update_by")] public string UpdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 删除标记 /// [SugarColumn(ColumnName = "del_flag")] public string DelFlag { get; set; } // '0' or other values /// /// 货架排序 /// [SugarColumn(ColumnName = "shelf_order")] public string ShelfOrder { get; set; } /// /// 检查排序 /// [SugarColumn(ColumnName = "check_order")] public string CheckOrder { get; set; } /// /// 拣货排序 /// [SugarColumn(ColumnName = "pick_order")] public string PickOrder { get; set; } /// /// 拣货标记 /// [SugarColumn(ColumnName = "pick_flag")] public string PickFlag { get; set; } /// /// 是否开启KN标记 /// [SugarColumn(ColumnName = "is_open_kn_flag")] public string IsOpenKnFlag { get; set; } /// /// 库位报废类型 /// [SugarColumn(ColumnName = "location_scrap_type")] public string LocationScrapType { get; set; } /// /// 体积限制 /// [SugarColumn(ColumnName = "volume_limit")] public decimal? VolumeLimit { get; set; } /// /// 重量限制 /// [SugarColumn(ColumnName = "weight_limit")] public decimal? WeightLimit { get; set; } /// /// 长度 /// [SugarColumn(ColumnName = "length")] public decimal? Length { get; set; } /// /// 宽度 /// [SugarColumn(ColumnName = "width")] public decimal? Width { get; set; } /// /// 高度 /// [SugarColumn(ColumnName = "height")] public decimal? Height { get; set; } /// /// 容器状态 /// [SugarColumn(ColumnName = "container_status")] public string ContainerStatus { get; set; } // '1' or '2' /// /// 异常描述 /// [SugarColumn(ColumnName = "exception_desc")] public string ExceptionDesc { get; set; } } }