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 double Point { get; set; }
}
}