29 lines
596 B
C#
29 lines
596 B
C#
using Newtonsoft.Json;
|
|
|
|
|
|
using ServerCore; using ServerBase;
|
|
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
public class DailyRefreshLogData : ILogInvoker.IInfo
|
|
{
|
|
[JsonProperty] public DateTime CurrentTime { get; set; } = DateTimeHelper.Current;
|
|
|
|
public DailyRefreshLogData()
|
|
{
|
|
CurrentTime = DateTimeHelper.Current;
|
|
}
|
|
|
|
public DailyRefreshLogData(ILogInvoker parent, DailyRefreshLogData logParam)
|
|
: base(parent)
|
|
{
|
|
setLog(logParam);
|
|
}
|
|
|
|
public void setLog(DailyRefreshLogData logData)
|
|
{
|
|
CurrentTime = logData.CurrentTime;
|
|
}
|
|
} |