using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; namespace ARW.Model.Vo.Api.CustomerServices { /// /// 客服展示对象Api /// /// @author lwh /// @date 2023-10-21 /// public class CustomerServiceVoApi { /// /// 描述 : /// 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; } } /// /// 客服详情展示对象Api /// 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; } } }