using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Utility.Tools
|
{
|
public class UtilityUrlConfig
|
{
|
/// <summary>
|
/// 130日志路径
|
/// </summary>
|
public string Get130log { get; set; } = "D:\\server\\JC08WmsServer\\log\\WCS"; //130日志地址
|
|
/// <summary>
|
/// 131日志路径
|
/// </summary>
|
public string Get131log { get; set; } = "D:\\server\\ApiServer\\log\\WCS"; //131日志地址
|
//public string Get131log { get; set; } = "E:\\wms\\JC08\\JC08WMSGitee\\WmsServer\\WmsApi\\log\\WCS"; //本地测试地址
|
|
//"Get130log": "D:\\server\\JC08WmsServer\\log\\WCS", //130日志地址
|
//"Get130log": "D:\\server\\JC08WmsServer\\log\\WCS", //本地日志地址
|
//"Get131log": "D:\\server\\ApiServer\\log\\WCS" //131日志地址
|
}
|
}
|