85 lines
2.2 KiB
C#
85 lines
2.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MorphoCreateApp Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MorphoCreateApp : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 小程序类目
|
||
/// </summary>
|
||
[XmlElement("app_category_ids")]
|
||
public string AppCategoryIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序描述
|
||
/// </summary>
|
||
[XmlElement("app_desc")]
|
||
public string AppDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序英文名称
|
||
/// </summary>
|
||
[XmlElement("app_english_name")]
|
||
public string AppEnglishName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序LOGO
|
||
/// </summary>
|
||
[XmlElement("app_logo")]
|
||
public string AppLogo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序名称
|
||
/// </summary>
|
||
[XmlElement("app_name")]
|
||
public string AppName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序简介
|
||
/// </summary>
|
||
[XmlElement("app_slogan")]
|
||
public string AppSlogan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 闪蝶创建小程序类型应用时应用的业务类型,目前氛围技术型和普通型,普通型不传,技术型为:'TECHNICAL_SUPPORT'
|
||
/// </summary>
|
||
[XmlElement("biz_type")]
|
||
public string BizType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序所属PID
|
||
/// </summary>
|
||
[XmlElement("dev_id")]
|
||
public string DevId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序ID,使用已有小程序创建闪蝶站点时使用
|
||
/// </summary>
|
||
[XmlElement("mini_app_id")]
|
||
public string MiniAppId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客服电话
|
||
/// </summary>
|
||
[XmlElement("service_phone")]
|
||
public string ServicePhone { get; set; }
|
||
|
||
/// <summary>
|
||
/// 闪蝶应用名称
|
||
/// </summary>
|
||
[XmlElement("title")]
|
||
public string Title { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建的闪蝶应用的类型:小程序、H5等
|
||
/// </summary>
|
||
[XmlElement("type")]
|
||
public string Type { get; set; }
|
||
}
|
||
}
|