50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.TableDataManage.CustomerFollows
|
|
{
|
|
/// <summary>
|
|
/// 客户关注展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-24
|
|
/// </summary>
|
|
public class CustomerFollowVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int CustomerFollowId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerFollowGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :客户Guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :表格数据Guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long TableDataGuid { get; set; }
|
|
|
|
public string CustomerName { get; set; }
|
|
public string CustomerPhone { get; set; }
|
|
public string TableDataName { get; set; }
|
|
|
|
}
|
|
}
|