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
* 唯一标识:a4dbd270-62c5-47db-a5f7-7e7cb895d15a
*
* 创建者:WenJY
* 电子邮箱:wenjy@mesnac.com
* 创建时间:2024-04-07 16:55:22
* 版本:V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本:V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.Model.domain
{
///
/// 库位信息
///
[SugarTable("wms_base_location"), TenantAttribute("mes")]
public class BaseLocation
{
///
/// 库位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; }
///
/// 深度
///
[SugarColumn(ColumnName = "loc_deep")]
public int? LocDeep { get; set; }
///
/// 激活标志
///
[SugarColumn(ColumnName = "active_flag")]
public string ActiveFlag { get; set; }
///
/// 手动标志
///
[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; }
///
/// 批次混合
///
[SugarColumn(ColumnName = "batch_mix")]
public string BatchMix { get; set; }
///
/// 创建者
///
[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; }
///
/// 货架排序
///
[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; }
///
/// 开箱标志
///
[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; }
///
/// 异常描述
///
[SugarColumn(ColumnName = "exception_desc")]
public string ExceptionDesc { get; set; }
}
}