using System.Collections.Generic; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 充值活动输出模型 /// public class RechargeOutputDto { public long Id { get; set; } /// /// 活动名称 /// public string Name { get; set; } /// /// 状态0未开始/1进行中/2已结束 /// public int Status { get; set; } /// /// 状态名称 /// public string StatusName { get; set; } /// /// 详情 /// public List rechargeIntros { get; set; } } }