using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 充值活动详情表
///
[Table("rm_recharge_intro")]
public class RechargeIntroEntity : BaseEntity
{
///
/// 父级ID
///
public long ParentId { get; set; }
///
/// 商品名称
///
public string ProductName { get; set; }
///
/// 商品价值
///
public int ProductValue { get; set; }
///
/// 赠送价值
///
public int SendValue { get; set; }
///
/// 商品总价值
///
public int AllValue { get; set; }
///
/// 商品销售价
///
public decimal Price { get; set; }
///
/// 商品描述
///
public string Description { get; set; }
}
}