NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarFuellingShopC...

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