90 lines
2.3 KiB
C#
90 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using SqlSugar;
|
|
using OfficeOpenXml.Attributes;
|
|
using Newtonsoft.Json;
|
|
using Org.BouncyCastle.Asn1.Cms;
|
|
|
|
namespace ARW.Model.Models.Business.CustomerServices
|
|
{
|
|
/// <summary>
|
|
/// 客服,数据实体对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-21
|
|
/// </summary>
|
|
[SugarTable("tb_customer_service")]
|
|
public class CustomerService : BusinessBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "customer_service_id")]
|
|
public int CustomerServiceId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "customer_service_guid")]
|
|
public long CustomerServiceGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :名称
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "customer_service_name")]
|
|
public string CustomerServiceName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :电话
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "customer_service_phone")]
|
|
public string CustomerServicePhone { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :图片
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "customer_service_img")]
|
|
public string CustomerServiceImg { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :工作时间-上班时间
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "working_hours_begin_time")]
|
|
public string WorkingHoursBeginTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :工作时间-下班时间
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "working_hours_end_time")]
|
|
public string WorkingHoursEndTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "customer_service_sort")]
|
|
public int CustomerServiceSort { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
} |