NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiMarketingDataBizadvis...

18 lines
1.2 KiB
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.Response
{
/// <summary>
/// KoubeiMarketingDataBizadviserMemberprofileQueryResponse.
/// </summary>
public class KoubeiMarketingDataBizadviserMemberprofileQueryResponse : AopResponse
{
/// <summary>
/// result是一个所有结果集合的json串里面有一下一些信息 LISTDETAIL详细数据List。List里面又有下面这五个字段 indicator_order 指标KEY排序 indicator_value 数值(均价分段是笔数值,其余为会员数) indicator_value_percent 数值百分比 dimension 和dimension_desc 对应关系如下: 1-性别2-年龄3-是否学生4-是否有小孩5-消费频率6-消费金额7-笔单价; indicator_key 说明如下: 男、女;用于判断男女 [0,17]、[18,25]、[26,35]、[36,45]、[46,55]、[56,~ ] 学生、非学生; 有小孩、无小孩;用于判断是否有小孩 1、2、3、4、5、6、次及以上用于判断消费次数的层级 金额分段区间;均价分段区间
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
}
}