using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using Org.BouncyCastle.Asn1.Cms;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Business.CustomerServices
{
///
/// 客服展示对象
///
/// @author lwh
/// @date 2023-10-21
///
public class CustomerServiceVo
{
///
/// 描述 :
///
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 string WorkingHoursBeginTime { get; set; }
///
/// 描述 :工作时间-下班时间
///
public string WorkingHoursEndTime { get; set; }
///
/// 描述 :排序
///
public int CustomerServiceSort { get; set; }
}
}