using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoMycarFuellingShopCreateModel Data Structure.
///
[Serializable]
public class AlipayEcoMycarFuellingShopCreateModel : AopObject
{
///
/// 门店地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 国标6位城市编号
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 国标6位区编号
///
[XmlElement("district_code")]
public string DistrictCode { get; set; }
///
/// 纬度,高德坐标系,最好找到高德POI标识,取得标识的维度填入
///
[XmlElement("lat")]
public string Lat { get; set; }
///
/// 经度,高德坐标系,最好找到高德POI标识,取得标识的经度填入
///
[XmlElement("lon")]
public string Lon { get; set; }
///
/// 外部门店编号,系统唯一,该值添加后不可修改
///
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
///
/// ISV提供的门店支付链接地址,如果支付链接地址为空,默认使用用户的当面付链接地址。注意:链接地址必须使用https://或alipays://协议。需进行encode转码
///
[XmlElement("pay_url")]
public string PayUrl { get; set; }
///
/// 高德POI信息唯一ID,可通过http://lbs.amap.com/api/webservice/guide/api/search/进行查找,查询的TYPE为010100|010101|010102|010103|010104|010105|010107|010108|010109|010110|010111|010112
///
[XmlElement("poi_id")]
public string PoiId { get; set; }
///
/// 国标6位省份编号
///
[XmlElement("province_code")]
public string ProvinceCode { get; set; }
///
/// 门店名称
///
[XmlElement("shop_name")]
public string ShopName { get; set; }
///
/// 门店状态,0:有效;1:停用;
///
[XmlElement("shop_status")]
public string ShopStatus { get; set; }
}
}