using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KoubeiAdvertCommissionBillQueryModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionBillQueryModel : AopObject
{
///
/// 账期(格式为yyyyMM)
///
[JsonProperty("date")]
public string Date { get; set; }
///
/// 账单类型 deal-交易账单 settle-结算账单
///
[JsonProperty("type")]
public string Type { get; set; }
}
}