using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace wispro.sp.entity
{
public class AppealType
{
public int Id { get; set; }
///
/// 类型名称
///
public string Name { get; set; }
///
/// 可以申诉的条件表达式
/// 以linq Express保存
///
public string CanDoExpress { get; set; }
///
/// 默认审核人获取表达式
///
public string ReviewerExpress { get; set; }
///
/// 申诉类型,
/// 0:绩效记录
/// 1:公共
///
public int Type { get; set; }
///
/// 是否需要审核
///
public bool NeedReview { get; set; }
///
/// 申诉处理对象
///
public string ApplealObject { get; set; }
///
/// 审核处理对象
///
public string ReviewObject { get; set; }
}
}