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.
22 lines
560 B
22 lines
560 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 充值活动表
|
|
/// </summary>
|
|
[Table("rm_recharge")]
|
|
public class RechargeEntity : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 活动名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态0未开始/1进行中/2已结束
|
|
/// </summary>
|
|
public int Status { get; set; }
|
|
}
|
|
}
|