25 lines
726 B
C#
25 lines
726 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarFuellingShopQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoMycarFuellingShopQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 外部门店编号系统唯一,该值添加后不可修改,与字段shop_id不能同时为空
|
||
/// </summary>
|
||
[XmlElement("out_shop_id")]
|
||
public string OutShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车主平台内部门店编号,系统唯一,与字段out_shop_id不能同时为空
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
}
|
||
}
|