using HH.WCS.Hexafluo;
|
|
namespace HH.WCS.SJML.util
|
{
|
public static class LogType
|
{
|
public static LogPara LogPara(string logType)
|
{
|
var logPara = new LogPara(logType);
|
LogHelper.Detail(logPara.LogType, "---------------------------------------------------------");
|
return logPara;
|
}
|
}
|
public class LogPara
|
{
|
public LogPara(string logType)
|
{
|
LogIndex = 0;
|
this.LogType = logType;
|
logPara = new TOOLS.LOG.LogPara1(logType);
|
}
|
|
public string LogType { get; set; }
|
|
public int LogIndex { get; set; }
|
|
public HH.TOOLS.LOG.LogPara1 logPara { get; set; }
|
}
|
}
|