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