using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace JSMachine.WMS.App.Dto.Enum
{
///
/// 库位状态
///
[JsonConverter(typeof(StringEnumConverter))]
public enum StorageRackStatus
{
///
/// 空闲
///
Empty = 0,
///
/// 有货
///
HaveGoods = 1,
///
/// 锁定
///
Locked = 2,
///
/// 禁用
///
Disabled = 3,
}
}