MQTTPipeLineTests test 중

This commit is contained in:
김형인
2025-06-10 01:09:36 +09:00
parent ac3645577a
commit 649a359ab4
14 changed files with 886 additions and 70 deletions

View File

@@ -30,7 +30,7 @@ namespace UVC.Data
/// mask.ObjectName = "employees"; // 데이터 객체의 이름 지정
///
/// // 필드 이름 변환 규칙 설정
/// mask.NamesForReplace = new Dictionary<string, string>
/// mask.NamesForReplace = new Dictionary<string, string>
/// {
/// { "full_name", "name" }, // JSON의 full_name을 name으로 변환
/// { "employee_age", "age" } // JSON의 employee_age를 age로 변환
@@ -87,7 +87,7 @@ namespace UVC.Data
/// <example>
/// <code>
/// var mask = new DataMask();
/// mask.NamesForReplace = new Dictionary&lt;string, string&gt;
/// mask.NamesForReplace = new Dictionary<string, string>
/// {
/// { "first_name", "firstName" },
/// { "last_name", "lastName" },