NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateCardLevelConfDTO.cs

37 lines
997 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// TemplateCardLevelConfDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateCardLevelConfDTO : AopObject
{
/// <summary>
/// 会员级别 该级别和开卡接口中的level要一致
/// </summary>
[XmlElement("level")]
public string Level { get; set; }
/// <summary>
/// 会员级别描述
/// </summary>
[XmlElement("level_desc")]
public string LevelDesc { get; set; }
/// <summary>
/// 会员级别对应icon 通过接口alipay.offline.material.image.upload上传图片
/// </summary>
[XmlElement("level_icon")]
public string LevelIcon { get; set; }
/// <summary>
/// 会员级别显示名称
/// </summary>
[XmlElement("level_show_name")]
public string LevelShowName { get; set; }
}
}