xcx_temp_api/ARW.Model/Vo/Api/Custom/Customers/CustomerApiVo.cs

73 lines
1.9 KiB
C#

using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.Custom.Customers
{
/// <summary>
/// 小程序客户详情展示对象Api
/// </summary>
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; }
/// <summary>
/// 收藏数量
/// </summary>
public int CollectCount { get; set; }
/// <summary>
/// 历史浏览数量
/// </summary>
public int HistoryCount { get; set; }
/// <summary>
/// 待付款数量
/// </summary>
public int WaitPayCount { get; set; }
/// <summary>
/// 待发货数量
/// </summary>
public int DeliverCount { get; set; }
/// <summary>
/// 待收货数量
/// </summary>
public int PackageCount { get; set; }
/// <summary>
/// 待评价数量
/// </summary>
public int CommentCount { get; set; }
/// <summary>
/// 退款/售后数量
/// </summary>
public int ExchangCount { get; set; }
}
}