zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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; }
    }
}