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