sunpengfei
7 天以前 56af0f468f321d41db70343abf558d61cda58d31
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core.Models.ElectronSignServer.ContractTemplates
{
    /// <summary>
    /// 电子签-合同状态(1待创建 2已创建 3已发送,正在签署中 4拒绝签署,已取消 5已完成 9已过期 99合同检测无效)
    /// </summary>
    public enum EnumElectronSignContractStatus
    {
        /// <summary>
        /// 待创建
        /// </summary>
        [Description("待创建")]
        WaitCreate = 1,
        /// <summary>
        /// 已创建
        /// </summary>
        [Description("已创建")]
        Created = 2,
        /// <summary>
        /// 已发送,正在签署中
        /// </summary>
        [Description("已发送,正在签署中")]
        Signing = 3,
        /// <summary>
        /// 拒绝签署,已取消
        /// </summary>
        [Description("拒绝签署,已取消")]
        Cancelled = 4,
        /// <summary>
        /// 已完成
        /// </summary>
        [Description("已完成")]
        Completed = 5,
        /// <summary>
        /// 已过期
        /// </summary>
        [Description("已过期")]
        Expired = 9,
        /// <summary>
        /// 合同检测无效
        /// </summary>
        [Description("合同检测无效")]
        Invalid = 99
    }
}