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.
26 lines
442 B
C#
26 lines
442 B
C#
using System.ComponentModel;
|
|
|
|
namespace DS.WMS.Common.Enum;
|
|
|
|
/// <summary>
|
|
/// 正常状态
|
|
/// </summary>
|
|
public enum NomalStatus
|
|
{
|
|
/// <summary>
|
|
/// 正常
|
|
/// </summary>
|
|
[Description("正常")]
|
|
Nomal = 0,
|
|
|
|
/// <summary>
|
|
/// 审核通过
|
|
/// </summary>
|
|
[Description("审核通过")]
|
|
Approve = 1,
|
|
/// <summary>
|
|
/// 驳回
|
|
/// </summary>
|
|
[Description("驳回")]
|
|
Reject = 2,
|
|
} |