| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
|   | 
| namespace SyntacticSugar.constant | 
| { | 
|     public static class TypeConstant | 
|     { | 
|         //审核 | 
|         public const int AUDIT = 0; | 
|   | 
|         //取消审核 | 
|         public const int REVERSE_AUDIT = 1; | 
|   | 
|         //关闭 | 
|         public const int CLOSED = 1; | 
|   | 
|         //反关闭 | 
|         public const int REVERSE_CLOSED = 2; | 
|   | 
|         //行关闭 | 
|         public const int LINE_CLOSED = 0; | 
|   | 
|         //行反关闭 | 
|         public const int REVERSE_LINE_CLOSED = 1; | 
|   | 
|         //作废 | 
|         public const int INVALID = 1; | 
|   | 
|         //反作废 | 
|         public const int REVERSE_INVALID = 2; | 
|   | 
|     } | 
| } |