using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Core.Entity { /// /// 钉钉客服通知群配置 /// [SugarTable("djy_dingtalk_group_config")] [Description("钉钉客服通知群配置")] public class DjyDingtalkGroupConfig : DEntityBase { /// /// 代码 /// public string Code { get; set; } /// /// 说明 /// public string Desp { get; set; } /// /// Url /// public string Url { get; set; } /// /// 关键 /// public string Keyword { get; set; } } }