1
wtt
2025-03-03 232e045de7627043dfb506b3d66ed083110c235c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
 
    }
}