wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Common.Enum
{
    /// <summary>
    /// 认证类型 EnterpriceConfrim的枚举更改并新增 0未认证/个人认证 1已填写资料并上传 2 终端工厂认证 3 贸易商认证 4 研发机构认证
    /// </summary>
    public enum EnumEnterpriceConfirmType
    {
        [NoteAttribute("未认证/个人认证")]
        NotCompleteConfirm = 0,
        [NoteAttribute("未认证")]
        CompleteUploadFile = 1,
        [NoteAttribute("终端工厂认证")]
        TerminalFactoryConfirm = 2,
        [NoteAttribute("贸易商认证")]
        TradingCompanyConfirm = 3,
        [NoteAttribute("研发机构认证")]
        DevelopmentOrganizationConfirm = 4,
        [NoteAttribute("其他认证")]
        OhtersConfirm = 5
    }
}