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; } } }