using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ActivityPlanInfo Data Structure.
///
[Serializable]
public class ActivityPlanInfo : AopObject
{
///
/// 平台活动结束时间
///
[XmlElement("activity_end_time")]
public string ActivityEndTime { get; set; }
///
/// 平台活动开始时间
///
[XmlElement("activity_start_time")]
public string ActivityStartTime { get; set; }
///
/// 招商结束时间
///
[XmlElement("confirm_end_time")]
public string ConfirmEndTime { get; set; }
///
/// 平台活动邀约工单号(需要在第三方活动中回传)
///
[XmlElement("invite_order_id")]
public string InviteOrderId { get; set; }
///
/// 规则描述
///
[XmlArray("plan_rule_list")]
[XmlArrayItem("plan_rule")]
public List PlanRuleList { get; set; }
///
/// 是个链接地址,下载后是pdf文件
///
[XmlElement("plat_activity_agreement")]
public string PlatActivityAgreement { get; set; }
///
/// 平台活动id(需要在第三方方活动中回传)
///
[XmlElement("plat_activity_id")]
public string PlatActivityId { get; set; }
///
/// 平台活动标签类型
///
[XmlElement("plat_activity_label_type")]
public string PlatActivityLabelType { get; set; }
///
/// 平台活动名称
///
[XmlElement("plat_activity_name")]
public string PlatActivityName { get; set; }
///
/// 活动规则描述
///
[XmlElement("plat_activity_rule_desc")]
public string PlatActivityRuleDesc { get; set; }
///
/// 平台活动状态,GOING/FINISH,GOING表示招商中,FINISH表示招商已经结束(再报名活动也无法成功),只有GOING状态可以报名
///
[XmlElement("plat_activity_status")]
public string PlatActivityStatus { get; set; }
///
/// 其他说明
///
[XmlElement("plat_other_desc")]
public string PlatOtherDesc { get; set; }
}
}