초기커밋
This commit is contained in:
47
ServerCommon/1. Define/BusinessLog/Domain/AIChatData.cs
Normal file
47
ServerCommon/1. Define/BusinessLog/Domain/AIChatData.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
||||
using ServerCore; using ServerBase;
|
||||
|
||||
|
||||
using META_ID = System.UInt32;
|
||||
using ANCHOR_GUID = System.String;
|
||||
using BEACON_GUID = System.String;
|
||||
|
||||
|
||||
|
||||
namespace ServerCommon.BusinessLogDomain;
|
||||
|
||||
public class AIChatLogData : ILogInvoker.IInfo
|
||||
{
|
||||
public AIChatLogData()
|
||||
: base()
|
||||
{ }
|
||||
|
||||
[JsonProperty]
|
||||
public string AIChatURL { get; set; } = string.Empty;
|
||||
[JsonProperty]
|
||||
public string AIChatBodyParamJson { get; set; } = string.Empty;
|
||||
|
||||
//=====================================================================================
|
||||
// 로그 생성용 객체 정의
|
||||
//=====================================================================================
|
||||
|
||||
public void setItemInfo(AIChatLogData logData)
|
||||
{
|
||||
AIChatURL = logData.AIChatURL;
|
||||
AIChatBodyParamJson = logData.AIChatBodyParamJson;
|
||||
}
|
||||
|
||||
//=====================================================================================
|
||||
// 로그 출력용 객체 정의
|
||||
//=====================================================================================
|
||||
public AIChatLogData(ILogInvoker parent, AIChatLogData itemParam)
|
||||
: base(parent)
|
||||
{
|
||||
if (null != itemParam)
|
||||
{
|
||||
setItemInfo(itemParam);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user