using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace iWare.Wms.Core;
///
/// 库位类型
///
[Table("wms_location_type")]
[Comment("库位类型")]
public class WmsLocationType : DEntityBase
{
///
/// 类型编码
///
[Comment("类型编码")]
public string WareLocationTypeCode { get; set; }
///
/// 类型名称
///
[Comment("类型名称")]
public string WareLocationTypeName { get; set; }
///
/// 状态(字典 0正常 1停用 2删除)
///
[Comment("状态")]
public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
///
/// 备注
///
[Comment("状态")]
public string Remark { get; set; }
///
/// 库位长度
///
[Comment("库位长度")]
public decimal Length { get; set; }
///
/// 库位宽度
///
[Comment("库位宽度")]
public decimal Width { get; set; }
///
/// 库位高度
///
[Comment("库位高度")]
public decimal Height { get; set; }
///
/// 最大承重
///
[Comment("最大承重")]
public decimal MaxWeight { get; set; }
}