using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEbppProdmodeProvcityQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppProdmodeProvcityQueryModel : AopObject
{
///
/// 省市编号
///
[JsonProperty("adcode")]
public string Adcode { get; set; }
///
/// 查询类型,queryType=1,查询省下面的市信息
///
[JsonProperty("query_type")]
public string QueryType { get; set; }
}
}