You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
673 B
C#
40 lines
673 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUCMA.STORE.Entity.Enums
|
|
{
|
|
/// <summary>
|
|
/// 库位状态
|
|
/// </summary>
|
|
public enum LocationStatus
|
|
{
|
|
/// <summary>
|
|
/// 占用
|
|
/// </summary>
|
|
Occupy,
|
|
|
|
/// <summary>
|
|
/// 正在使用
|
|
/// </summary>
|
|
InUse,
|
|
|
|
/// <summary>
|
|
/// 未使用
|
|
/// </summary>
|
|
UnUsed,
|
|
|
|
/// <summary>
|
|
/// 停用
|
|
/// </summary>
|
|
Paused,
|
|
|
|
/// <summary>
|
|
/// 异常
|
|
/// </summary>
|
|
Anomaly,
|
|
}
|
|
}
|