NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportAdPl...

25 lines
694 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceTransportAdPlanOfflineModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportAdPlanOfflineModel : AopObject
{
/// <summary>
/// 广告主id + 下线计划操作时需要校验该plan是否属于该广告主
/// </summary>
[XmlElement("ad_user_id")]
public long AdUserId { get; set; }
/// <summary>
/// 广告计划id + 根据广告计划id下线对应的广告计划
/// </summary>
[XmlElement("plan_id")]
public long PlanId { get; set; }
}
}