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