133 lines
3.8 KiB
C#
133 lines
3.8 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenMiniInnerbaseinfoCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenMiniInnerbaseinfoCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 小程序应用名称
|
||
/// </summary>
|
||
[XmlElement("app_alias_name")]
|
||
public string AppAliasName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序类目ID列表
|
||
/// </summary>
|
||
[XmlElement("app_category_ids")]
|
||
public string AppCategoryIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序应用描述,20-200个字
|
||
/// </summary>
|
||
[XmlElement("app_desc")]
|
||
public string AppDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序英文名称
|
||
/// </summary>
|
||
[XmlElement("app_english_name")]
|
||
public string AppEnglishName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 淘宝鉴权key
|
||
/// </summary>
|
||
[XmlElement("app_key")]
|
||
public string AppKey { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序logo图标,建议上传像素为180*180
|
||
/// </summary>
|
||
[XmlElement("app_logo")]
|
||
public string AppLogo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序中文名名称
|
||
/// </summary>
|
||
[XmlElement("app_name")]
|
||
public string AppName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 应用来源
|
||
/// </summary>
|
||
[XmlElement("app_origin")]
|
||
public string AppOrigin { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序应用简介,一句话描述小程序功能
|
||
/// </summary>
|
||
[XmlElement("app_slogan")]
|
||
public string AppSlogan { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序类型 普通小程序:TINYAPP_NORMAL
|
||
/// </summary>
|
||
[XmlElement("app_sub_type")]
|
||
public string AppSubType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序类型,H5 or RN,区分于 app_sub_type
|
||
/// </summary>
|
||
[XmlElement("app_type")]
|
||
public string AppType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 多端类型
|
||
/// </summary>
|
||
[XmlElement("client_type")]
|
||
public string ClientType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 租户编码,不同租户下的数据是隔离的 支付宝:alipay 淘宝:taobao
|
||
/// </summary>
|
||
[XmlElement("inst_code")]
|
||
public string InstCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 需要同步的小程序ID
|
||
/// </summary>
|
||
[XmlElement("mini_app_id")]
|
||
public string MiniAppId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 新小程序前台类目,一级与二级、三级用下划线隔开,最多可以选四个类目,类目之间;隔开。使用后不再读取app_category_ids值,老前台类目将废弃
|
||
/// </summary>
|
||
[XmlElement("mini_category_ids")]
|
||
public string MiniCategoryIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 应用主体
|
||
/// </summary>
|
||
[XmlElement("owner_entity")]
|
||
public string OwnerEntity { get; set; }
|
||
|
||
/// <summary>
|
||
/// 应用来源 MAYI:蚂蚁域内应用 ALIBABA:阿里域内应用
|
||
/// </summary>
|
||
[XmlElement("partner_domain")]
|
||
public string PartnerDomain { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序管理员虚拟 ID
|
||
/// </summary>
|
||
[XmlElement("pid")]
|
||
public string Pid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客服邮箱
|
||
/// </summary>
|
||
[XmlElement("service_mail")]
|
||
public string ServiceMail { get; set; }
|
||
|
||
/// <summary>
|
||
/// 客服电话
|
||
/// </summary>
|
||
[XmlElement("service_phone")]
|
||
public string ServicePhone { get; set; }
|
||
}
|
||
}
|