using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace YouZanSDKStandard.Api.Domain
|
{
|
public class YouZanPointIncreaseDomain
|
{
|
/// <summary>
|
/// 积分变动原因
|
/// </summary>
|
public string reason { get; set; }
|
/// <summary>
|
/// 渠道来源,主要指产生积分的交易渠道
|
/// </summary>
|
public int channel_type { get; set; }
|
|
public string biz_value { get; set; }
|
/// <summary>
|
/// 积分变动值
|
/// </summary>
|
public int points { get; set; }
|
|
public YouZanPointIncreaseUser user { get; set; }
|
}
|
|
public class YouZanPointIncreaseUser
|
{
|
/// <summary>
|
///帐号类型(支持的用户账号类型 1-有赞粉丝id(有赞不同的合作渠道会生成不同渠道对应在有赞平台下的fans_id); 2-手机号; 3-三方帐号(原open_user_id:三方App用户ID,该参数仅限购买App开店插件的商家使用);5-有赞用户id,用户在有赞的唯一id。推荐使用)
|
/// </summary>
|
public int account_type { get; set; }
|
/// <summary>
|
/// 帐号ID
|
/// </summary>
|
public string account_id { get; set; }
|
}
|
}
|