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 FieldValue { get; set; }
///
/// 对应绩效事项的值
///
public string MapObjectField { get; set; }
public virtual AppealType AppealType { get; set; }
///
/// 申诉类型
///
public int AppealTypeId { get; set; }
///
/// 申诉状态
///
public int AppealState { get; set; }
}
}