NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataBizadvis...

19 lines
658 B
C#
Raw Permalink 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>
/// KoubeiMarketingDataBizadviserMemberprofileQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataBizadviserMemberprofileQueryModel : AopObject
{
/// <summary>
/// 会员分层,可传 ALL/4/3/2/1 五个值 传ALL查询所有分层的汇总 传4查询 流失客层级的; 传3查询 过客层级的; 传2查询 新客层级的; 传1查询 回头客层级的;
/// </summary>
[XmlElement("member_grade")]
public string MemberGrade { get; set; }
}
}