using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; namespace Eventech.DynPicture.Model { /// /// 图片文本类型枚举 /// public enum eTextType { [Display(Name = "文本")] Text=0, [Display(Name = "数值")] Numeric=1, [Display(Name = "时间")] DateTime=2 } }