using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; namespace ARW.Model.Vo.Api.Custom.Customers { /// /// 小程序客户详情展示对象Api /// public class CustomerApiDetailsVo { [EpplusIgnore] public int CustomerId { get; set; } [JsonConverter(typeof(ValueToStringConverter))] [EpplusIgnore] public long CustomerGuid { get; set; } [EpplusTableColumn(Header = "小程序openid")] public string CustomerXcxOpenid { get; set; } [EpplusTableColumn(Header = "昵称")] public string CustomerNickname { get; set; } [EpplusTableColumn(Header = "手机号")] public string CustomerMobilePhoneNumber { get; set; } [EpplusTableColumn(Header = "头像")] public string CustomerAvatar { get; set; } [EpplusTableColumn(Header = "性别")] public int CustomerGender { get; set; } [EpplusTableColumn(Header = "客户类型")] public int CustomerType { get; set; } /// /// 收藏数量 /// public int CollectCount { get; set; } /// /// 历史浏览数量 /// public int HistoryCount { get; set; } /// /// 待付款数量 /// public int WaitPayCount { get; set; } /// /// 待发货数量 /// public int DeliverCount { get; set; } /// /// 待收货数量 /// public int PackageCount { get; set; } /// /// 待评价数量 /// public int CommentCount { get; set; } /// /// 退款/售后数量 /// public int ExchangCount { get; set; } } }