Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/FengdieActivityCreatePageData.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

24 lines
937 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// FengdieActivityCreatePageData Data Structure.
/// </summary>
[Serializable]
public class FengdieActivityCreatePageData : AopObject
{
/// <summary>
/// H5应用中页面名称。指定凤蝶开发工具项目中某个H5应用的页面名称。
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 指定name页面默认展示的数据。由Schema文件中的路径和展示的数据结构组成默认模板中Schema文件路径bgImage/bgImage默认模板中此参数的数据结构请参考默认模板-project-components-bglmage-bjlmage.json文件bjlmage.json文件中的内容可以编辑。注意展示的数据结构需要和Schema文件中的路径一致。
/// </summary>
[JsonProperty("schema_data")]
public string SchemaData { get; set; }
}
}