초기커밋
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user