30 lines
625 B
C#
30 lines
625 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.ShopManager.Shops
|
|
{
|
|
/// <summary>
|
|
/// 未绑定客户展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-12
|
|
/// </summary>
|
|
public class CustomerWithOutBindVo
|
|
{
|
|
/// <summary>
|
|
/// 描述 : 客户guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :客户名称
|
|
/// </summary>
|
|
public string CustomerNickname { get; set; }
|
|
|
|
}
|
|
}
|