V1版本
This commit is contained in:
24
CapMachine.Model/ModelMapConfig/RecordKeyValue.cs
Normal file
24
CapMachine.Model/ModelMapConfig/RecordKeyValue.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Model.ModelMapConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// 存储的Key值数据
|
||||
/// </summary>
|
||||
public class RecordKeyValue
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表名称
|
||||
/// </summary>
|
||||
public string? TableName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 要存储的键值对集合
|
||||
/// </summary>
|
||||
public Dictionary<string, object>? KeyValuePairs { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user