43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 微信客服
|
|
/// </summary>
|
|
[SugarTable("YB_WXCustomService", TableDescription = "微信客服", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_WXCustomService
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public Guid Id { get; set; }
|
|
/// <summary>
|
|
/// 小程序appid
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "小程序appid",ColumnDataType ="varchar(50)")]
|
|
public string AppId { get; set; }
|
|
/// <summary>
|
|
/// 企业微信appid
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "企业微信appid", ColumnDataType = "varchar(50)")]
|
|
public string QyAppId { get; set; }
|
|
/// <summary>
|
|
/// 客服链接
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "客服链接", ColumnDataType = "varchar(100)")]
|
|
public string Url { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
}
|
|
}
|