using Ips.Library.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ips.Service.CpuServer
{
public static class AppConst
{
///
/// 文件上传保存的目录
///
public static readonly string UploadDir = "Upload";
///
/// 采集服务使用的Http通信IP
///
public static string LocalIp { get; set; }
///
/// 采集服务使用的Http通信端口
///
public static int LocalPort { get; set; }
///
/// 服务编号
///
public static string SvrNo { get; set; }
///
/// 注册的容器http地址
///
public static string RegistryUri { get; set; }
///
/// 是否启用同频对消API
///
public static bool UseTpdx = true;
///
/// 是否启用参数估计API
///
public static bool UseCg = true;
///
/// 是否启用信号检测API
///
public static bool UseSigCheck = true;
}
}