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.

60 lines
1.4 KiB
C#

using System;
using System.Linq;
using System.Text;
namespace Models
{
///<summary>
///
///</summary>
public partial class global_config
{
public global_config(){
}
/// <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;}
}
}