using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Enums
{
public enum BillStateEnum
{
///
/// 新建
///
[Description("新建")]
Create,
///
/// 已提交
///
[Description("已提交")]
Submit,
///
/// 审核中
///
[Description("审核中")]
Auditing,
///
/// 已审核
///
[Description("已审核")]
Audit,
///
/// 驳回
///
[Description("驳回")]
ReAudit
}
}