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.
 
 

32 lines
763 B

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