using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class InputFieldValue { public int Id { get; set; } public virtual InputField InputField { get; set; } public int InputFieldId { get; set; } public string Label { get; set; } public string Value { get; set; } public int AppealRecordId { get; set; } public virtual AppealRecord AppealRecord { get; set; } /// /// 映射表达式,用于映射栏位为多值时定位映射到那个值 /// public string mapExpress { get; set; } } }