29 lines
645 B
C#
29 lines
645 B
C#
using Api.Framework.Tools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UI.Framework.Entitys;
|
|
|
|
namespace Api.Framework.Model
|
|
{
|
|
/// <summary>
|
|
/// 分组
|
|
/// </summary>
|
|
public class fl_member_level : base_model
|
|
{
|
|
/// <summary>
|
|
/// 分组名称
|
|
/// </summary>
|
|
[DataViewAtrribute(Name = "分组名称")]
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所需积分
|
|
/// </summary>
|
|
[DataViewAtrribute(Name = "所需积分")]
|
|
public double point { get; set; }
|
|
}
|
|
}
|