using Admin.NET.Core;
|
|
/*
|
* @author : 刘文奇
|
* @date : 2024/5/24下午4:40:49
|
* @desc : 容器库位关系
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 容器库位关系表
|
/// </summary>
|
[SugarTable("wms_container_place", "容器库位关系")]
|
public class WmsContainerPlace : EntityBase
|
{
|
|
|
/// <summary>
|
/// 库位Id
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PlaceId", ColumnDescription = "库位Id")]
|
public long? PlaceId { get; set; }
|
|
|
/// <summary>
|
/// 库位名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PlaceName", ColumnDescription = "库位名称", Length = 50)]
|
|
public string PlaceName { get; set; }
|
|
|
/// <summary>
|
/// 库位编码
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PlaceCode", ColumnDescription = "库位编码", Length = 50)]
|
|
public string PlaceCode { get; set; }
|
|
|
/// <summary>
|
/// 容器Id
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ContainerId", ColumnDescription = "容器Id")]
|
public long? ContainerId { get; set; }
|
|
|
/// <summary>
|
/// 容器名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "ContainerName", ColumnDescription = "容器名称", Length = 50)]
|
|
public string ContainerName { get; set; }
|
|
|
/// <summary>
|
/// 容器编码
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "ContainerCode", ColumnDescription = "容器编码", Length = 50)]
|
|
public string ContainerCode { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|