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.
34 lines
692 B
C#
34 lines
692 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.Module.Core.Enums
|
|
{
|
|
/// <summary>
|
|
/// 对账状态枚举
|
|
/// </summary>
|
|
public enum BillCheckStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 未对账
|
|
/// </summary>
|
|
[Description("未对账")]
|
|
NotChecked = 0,
|
|
/// <summary>
|
|
/// 已对账
|
|
/// </summary>
|
|
[Description("已对账")]
|
|
Checked = 1,
|
|
/// <summary>
|
|
/// 部分对账
|
|
/// </summary>
|
|
[Description("部分对账")]
|
|
PartiallyChecked = 2
|
|
|
|
|
|
}
|
|
}
|