using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace wispro.sp.entity
{
///
/// 基础点数规则
///
public class BasePointRule
{
public int Id { get; set; }
///
/// 基础点数规则
///
public string Rule { get; set; }
///
/// 基础点数表达式
///
public string PointExpress { get; set; }
///
/// 优先级
///
public int Priority { get; set; }
///
/// 绩效类型
///
public string Type { get; set; }
}
}