You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
831 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingCampaignRecruitShopQueryResponse.
/// </summary>
public class KoubeiMarketingCampaignRecruitShopQueryResponse : AopResponse
{
/// <summary>
/// 招商活动id
/// </summary>
[XmlElement("plan_id")]
public string PlanId { get; set; }
/// <summary>
/// 总量
/// </summary>
[XmlElement("shop_count")]
public string ShopCount { get; set; }
/// <summary>
/// 招商门店确认详情
/// </summary>
[XmlArray("shop_info")]
[XmlArrayItem("recruit_shop_info")]
public List<RecruitShopInfo> ShopInfo { get; set; }
}
}