招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

47 lines
1.1 KiB

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