using System;
using System.Collections.Generic;
using System.Text;
using Edu.Model.Entity.Sell;
namespace Edu.Model.ViewModel.Sell
{
public class RB_Point_Order_Extend : RB_Point_Order
{
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 用户头像
///
public string UserPhoto { get; set; }
///
/// 点数商品id
///
public int PointGoodsId { get; set; }
}
}