using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MiniAppVersionBaseInfo Data Structure. /// [Serializable] public class MiniAppVersionBaseInfo : AopObject { /// /// 开发者版本 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 01 自创建 02 模板构建 /// [XmlElement("build_source")] public string BuildSource { get; set; } /// /// 端标识 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// 时间 /// [XmlElement("create_time")] public string CreateTime { get; set; } /// /// 版本描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 模板实例化小程序参数 /// [XmlElement("ext_json")] public string ExtJson { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 灰度开始时间 /// [XmlElement("gray_start_time")] public string GrayStartTime { get; set; } /// /// 租户 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 小程序ID /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 下架时间 /// [XmlElement("offline_time")] public string OfflineTime { get; set; } /// /// 包地址 /// [XmlElement("package_url")] public string PackageUrl { get; set; } /// /// 插件plugin包地址 /// [XmlElement("plugin_url")] public string PluginUrl { get; set; } /// /// 回滚时间 /// [XmlElement("rollback_time")] public string RollbackTime { get; set; } /// /// 上架时间 /// [XmlElement("shelf_time")] public string ShelfTime { get; set; } /// /// 状态 /// [XmlElement("status")] public string Status { get; set; } /// /// 子状态 /// [XmlElement("sub_status")] public string SubStatus { get; set; } /// /// 构建模板参数 /// [XmlElement("template_extra")] public string TemplateExtra { get; set; } /// /// 模板应用ID /// [XmlElement("template_id")] public string TemplateId { get; set; } /// /// 模板版本 /// [XmlElement("template_version")] public string TemplateVersion { get; set; } } }