self_mall_api/ARW.Model/Vo/Api/CustomerServices/CustomerServiceApiVo.cs
2023-10-21 19:18:58 +08:00

87 lines
2.0 KiB
C#

using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.CustomerServices
{
/// <summary>
/// 客服展示对象Api
///
/// @author lwh
/// @date 2023-10-21
/// </summary>
public class CustomerServiceVoApi
{
/// <summary>
/// 描述 :
/// </summary>
public int CustomerServiceId { get; set; }
/// <summary>
/// 描述 :
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
public long CustomerServiceGuid { get; set; }
/// <summary>
/// 描述 :名称
/// </summary>
public string CustomerServiceName { get; set; }
/// <summary>
/// 描述 :电话
/// </summary>
public string CustomerServicePhone { get; set; }
/// <summary>
/// 描述 :图片
/// </summary>
public string CustomerServiceImg { get; set; }
/// <summary>
/// 描述 :工作时间-上班时间
/// </summary>
public string WorkingHoursBeginTime { get; set; }
/// <summary>
/// 描述 :工作时间-下班时间
/// </summary>
public string WorkingHoursEndTime { get; set; }
/// <summary>
/// 描述 :排序
/// </summary>
public int CustomerServiceSort { get; set; }
}
/// <summary>
/// 客服详情展示对象Api
/// </summary>
public class CustomerServiceApiDetailsVo
{
public int CustomerServiceId { get; set; }
[JsonConverter(typeof(ValueToStringConverter))]
public long CustomerServiceGuid { get; set; }
public string CustomerServiceName { get; set; }
public string CustomerServicePhone { get; set; }
public string CustomerServiceImg { get; set; }
public DateTime? WorkingHoursBeginTime { get; set; }
public DateTime? WorkingHoursEndTime { get; set; }
public int CustomerServiceSort { get; set; }
}
}