You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Infrastructure/Web/Mvc/Test/TestEnum.cs

33 lines
611 B

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Infrastructure.Web.Mvc.Test
{
[Description("输入类型")]
public enum TestEnum
{
[Display(Name = "文本")]
Text,
[Display(Name = "数值")]
Number,
[Display(Name = "Html代码")]
Html,
[Display(Name = "复选框")]
Boolean,
[Display(Name = "图片")]
ImageUrl,
[Display(Name = "文件")]
FileUrl,
[Display(Name = "日期")]
Date,
[Display(Name = "时间")]
DateTime
}
}