2025-12-17 10:32:52 +08:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Application.Config.Dtos;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class CustomConfigDetailOutput
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 表单渲染Json
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public JObject FormJson { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 表单数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public JObject DataJson { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 配置项Id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long ItemId { get; set; }
|
|
|
|
|
|
}
|