Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/DiagnoseResult.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

27 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// DiagnoseResult Data Structure.
/// </summary>
[Serializable]
public class DiagnoseResult : AopObject
{
/// <summary>
/// 提示文案业务参数,JSON对象形式返回JSON的KEY包含tradeCycleuserRateindustryRaterepayRate调用方根据诊断CODE分别给出不同的诊断文案例如 TRADE_RATE
/// 流失会员占比高 您当前${tradeCycle}(90)天未到店消费会员占总会员${userRate}(40%),落后同行${industryRate}(60%)的商家。 USER_COUNT 会员数量少
/// 您当前店均会员量较少,落后同行${industryRate}(60%)的商家。 REPAY_RATE 复购率低
/// 您当前${tradeCycle}(60)天会员回头率为${repayRate}(30%),落后于同行${industryRate}(60%)的商家。
/// </summary>
[JsonProperty("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 诊断结果CODE目前有如下三个值 TRADE_RATE 流失会员占比高 USER_COUNT 会员数量少 REPAY_RATE 复购率低
/// </summary>
[JsonProperty("diagnose_code")]
public string DiagnoseCode { get; set; }
}
}