1
pulg
2025-05-27 bc3d7a828114cb9df154da869ec986cf6733a779
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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; }
    }
}