sunpengfei
7 天以前 09d39bd7f1bfc72b78e0060c197562610a0ca9f8
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
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>
    /// 电子签-模板变量-内容填写人(10发件人 20签署人)
    /// </summary>
    public enum EnumElectronSignContractTemplateValueRecorder
    {
        /// <summary>
        /// 发件人
        /// </summary>
        [Description("发件人")]
        Creator = 10,
        /// <summary>
        /// 签署人
        /// </summary>
        [Description("签署人")]
        Signer = 20,
    }
}