sunpengfei
2025-08-21 145c1d52feed52b494d3e2d19f3ecd1da11b8979
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
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签署 30日期)
    /// </summary>
    public enum EnumElectronSignContractTemplateValueType
    {
        /// <summary>
        /// 文本
        /// </summary>
        [Description("文本")]
        Text = 10,
        /// <summary>
        /// 签署
        /// </summary>
        [Description("签署")]
        Sign = 20,
        /// <summary>
        /// 日期
        /// </summary>
        [Description("日期")]
        Date = 30,
    }
}