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.
61 lines
1.3 KiB
C#
61 lines
1.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Txgy.RBS.DTO
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public partial class GlobalConfigDTO
|
|
{
|
|
public GlobalConfigDTO()
|
|
{
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:"c:\\project"
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string base_path { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:"https://www.txgy.xyz/api/index/push"
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string push_wx_url { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:2
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int push_wx_company_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:1
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int push_wx_message_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:事件通知
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string push_wx_content { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:Y3qYFBQPMbfTt6m
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string push_wx_key { get; set; }
|
|
|
|
}
|
|
}
|