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_location_type")]
|
[Comment("库位类型")]
|
public class WmsLocationType : DEntityBase
|
{
|
/// <summary>
|
/// 类型编码
|
/// </summary>
|
[Comment("类型编码")]
|
public string WareLocationTypeCode { get; set; }
|
/// <summary>
|
/// 类型名称
|
/// </summary>
|
[Comment("类型名称")]
|
public string WareLocationTypeName { get; set; }
|
|
/// <summary>
|
/// 状态(字典 0正常 1停用 2删除)
|
/// </summary>
|
[Comment("状态")]
|
public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[Comment("状态")]
|
public string Remark { get; set; }
|
|
/// <summary>
|
/// 库位长度
|
/// </summary>
|
[Comment("库位长度")]
|
public decimal Length { get; set; }
|
|
/// <summary>
|
/// 库位宽度
|
/// </summary>
|
[Comment("库位宽度")]
|
public decimal Width { get; set; }
|
|
/// <summary>
|
/// 库位高度
|
/// </summary>
|
[Comment("库位高度")]
|
public decimal Height { get; set; }
|
|
/// <summary>
|
/// 最大承重
|
/// </summary>
|
[Comment("最大承重")]
|
public decimal MaxWeight { get; set; }
|
|
}
|