using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core.Enums.Users { /// /// 合同模板变量类型 /// public enum EnumContractTemplateValueType { /// /// 文本 /// Text = 10, /// /// 签署 /// Sign = 20, /// /// 日期 /// Date = 30, } }