using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.Core.Enums
{
///
/// 对账状态枚举
///
public enum BillCheckStatusEnum
{
///
/// 未对账
///
[Description("未对账")]
NotChecked = 0,
///
/// 已对账
///
[Description("已对账")]
Checked = 1,
///
/// 部分对账
///
[Description("部分对账")]
PartiallyChecked = 2
}
}