3 changed files with 86 additions and 1 deletions
@ -0,0 +1,25 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace WY.NewJit.MsgCheck |
||||
|
{ |
||||
|
public enum BillNumberTypeEnum |
||||
|
{ |
||||
|
[Description("顺序")] |
||||
|
顺序 = 0, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 已匹配,未打印
|
||||
|
/// </summary>
|
||||
|
[Description("断号")] |
||||
|
断号 = 1, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 已打印
|
||||
|
/// </summary>
|
||||
|
[Description("补打")] |
||||
|
补打 = 2, |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue