36 lines
727 B
C#
36 lines
727 B
C#
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
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 库位状态
|
||
|
|
/// </summary>
|
||
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
||
|
|
public enum StorageRackStatus
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 空闲
|
||
|
|
/// </summary>
|
||
|
|
Empty = 0,
|
||
|
|
/// <summary>
|
||
|
|
/// 有货
|
||
|
|
/// </summary>
|
||
|
|
HaveGoods = 1,
|
||
|
|
/// <summary>
|
||
|
|
/// 锁定
|
||
|
|
/// </summary>
|
||
|
|
Locked = 2,
|
||
|
|
/// <summary>
|
||
|
|
/// 禁用
|
||
|
|
/// </summary>
|
||
|
|
Disabled = 3,
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|