using Furion.DatabaseAccessor;
|
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace iWare.Wms.Core;
|
|
/// <summary>
|
/// 载具类型管理
|
/// </summary>
|
[Table("wms_container_type")]
|
[Comment("载具类型管理")]
|
public partial class WmsContainerType : DEntityBase
|
{
|
/// <summary>
|
/// 类型编码
|
/// </summary>
|
[Comment("类型编码")]
|
public string WareContainerTypeCode { get; set; }
|
/// <summary>
|
/// 类型名称
|
/// </summary>
|
[Comment("类型名称")]
|
public string WareContainerTypeName { get; set; }
|
|
/// <summary>
|
/// 长
|
/// </summary>
|
[Comment("长")]
|
public decimal? Length { get; set; }
|
|
/// <summary>
|
/// 高
|
/// </summary>
|
[Comment("高")]
|
public decimal? Height { get; set; }
|
|
/// <summary>
|
/// 宽
|
/// </summary>
|
[Comment("宽")]
|
public decimal? Width { get; set; }
|
|
/// <summary>
|
/// 可入库位类型
|
/// </summary>
|
[Comment("可入库位类型")]
|
public string LocationType { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[Comment("备注")]
|
public string Remarks { get; set; }
|
|
/// <summary>
|
/// 状态(字典 0正常 1停用 2删除)
|
/// </summary>
|
[Comment("状态")]
|
public CommonStatus? Status { get; set; } = CommonStatus.ENABLE;
|
|
/// <summary>
|
/// 与PLC定义的托盘类型
|
/// </summary>
|
public int? PLCTypeId { get; set; }
|
}
|