using Furion.DatabaseAccessor;
|
using iWare.Wms.Core.Enum;
|
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace iWare.Wms.Core
|
{
|
/// <summary>
|
/// 库区
|
/// </summary>
|
[Table("ware_location_vs_container")]
|
[Comment("库位与容器")]
|
public class WareLocationVsContainer : DEntityBase
|
{
|
/// <summary>
|
/// 仓库代码
|
/// </summary>
|
[Comment("仓库代码")]
|
public string WareStorehouseCode { get; set; }
|
|
/// <summary>
|
/// 区域代码
|
/// </summary>
|
[Comment("区域代码")]
|
public string WareRegionCode { get; set; }
|
|
/// <summary>
|
/// 库位代码
|
/// </summary>
|
[Comment("库位代码")]
|
public string WareLocationCode { get; set; }
|
|
/// <summary>
|
/// 容器Code
|
/// </summary>
|
[Comment("容器Code")]
|
public string WareContainerCode { get; set; }
|
|
/// <summary>
|
/// 容器Name
|
/// </summary>
|
[Comment("容器Name")]
|
public string WareContainerName { get; set; }
|
|
/// <summary>
|
/// 是否空容器
|
/// </summary>
|
[Comment("是否需要移库")]
|
public bool? IsEmptyContainer { get; set; }
|
|
/// <summary>
|
/// 状态-正常_0、停用_1、删除_2
|
/// </summary>
|
[Comment("状态-正常_0、停用_1、删除_2")]
|
public int? Status { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[Comment("备注")]
|
public string Remarks { get; set; }
|
|
/// <summary>
|
/// 排
|
/// </summary>
|
public int? Row { get; set; }
|
|
/// <summary>
|
/// 巷道
|
/// </summary>
|
public int? Lane { get; set; }
|
|
/// <summary>
|
/// 库位类型编码
|
/// </summary>
|
[Comment("库位类型编码")]
|
public string LocTypeCode { get; set; }
|
|
/// <summary>
|
/// 伸位
|
/// </summary>
|
[Comment("伸位")]
|
public DeepcellNoEnum? DeepcellNo { get; set; }
|
|
/// <summary>
|
/// 伸位号
|
/// </summary>
|
[Comment("伸位号")]
|
public string UnionCode { get; set; }
|
}
|
}
|