You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
781 B
C#
31 lines
781 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 钉钉客服通知群配置
|
|
/// </summary>
|
|
[SugarTable("djy_dingtalk_group_config")]
|
|
[Description("钉钉客服通知群配置")]
|
|
public class DjyDingtalkGroupConfig : DEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 说明
|
|
/// </summary>
|
|
public string Desp { get; set; }
|
|
/// <summary>
|
|
/// Url
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
/// <summary>
|
|
/// 关键
|
|
/// </summary>
|
|
public string Keyword { get; set; }
|
|
}
|
|
} |