using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class InputField { public int Id { get; set; } /// /// 栏位名称 /// public string FieldName { get; set; } /// /// 栏位类型 /// public string FieldType { get; set; } /// /// 对应绩效事项的值 /// public string MapObjectField { get; set; } /// /// 映射绩效事件的Label值 /// MapObjectField属性对应的是列表属性时使用 /// public string MapObjectFieldLabel { get; set; } public virtual AppealType AppealType { get; set; } /// /// 申诉类型 /// public int AppealTypeId { get; set; } /// /// 申诉状态 /// public int AppealState { get; set; } /// /// 是否可以多选 /// public bool CanMuliSelect { get; set; } /// /// 可选择的值 /// public virtual List SelectValues { get; set; } public int? MaxSize { get; set; } } }