using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { public class YouZanScrmCustomerSearch { public int total { get; set; } public YouZanScrmCustomerSearchDomain[] record_list { get; set; } } public class YouZanScrmCustomerSearchDomain { /// /// 微信粉丝ID,预留字段,同fans_id,建议使用下面的fans_id字段 /// public string weixin_fans_id { get; set; } /// /// 粉丝id /// public string fans_id { get; set; } /// /// 成为客户的时间,时间戳格式,单位秒 /// public string created_at { get; set; } /// /// 成为会员的时间,时间戳格式,单位秒 /// public string member_created_at { get; set; } /// /// 性别 /// public string gender { get; set; } /// /// 是否是会员 /// public int is_member { get; set; } /// /// 购次 /// public int trade_count { get; set; } /// /// 推荐展示姓名(showname可以等于name、可以等于mobile、可以等于nickname,取值顺序为手机-姓名-昵称) /// public string show_name { get; set; } /// /// 客户姓名 /// public string name { get; set; } /// /// 用户ID,即buyer_id /// public string yz_uid { get; set; } /// /// 用户积分 /// public string points { get; set; } /// /// 手机号 /// public string mobile { get; set; } } }