40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarFuellingProductModifyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoMycarFuellingProductModifyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 外部门店编号系统唯一,该值添加后不可修改,与字段shop_id不能同时为空
|
||
/// </summary>
|
||
[XmlElement("out_shop_id")]
|
||
public string OutShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商品信息集合,JSON格式,注意,该参数将覆盖原有已经设置的数据,即如想除去某一商品,去除后重新设置该字段值。
|
||
/// </summary>
|
||
[XmlArray("product")]
|
||
[XmlArrayItem("product")]
|
||
public List<Product> Product { get; set; }
|
||
|
||
/// <summary>
|
||
/// 促销信息集合,JSON格式
|
||
/// </summary>
|
||
[XmlArray("sale")]
|
||
[XmlArrayItem("sale")]
|
||
public List<Sale> Sale { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车主平台内部门店编号,系统唯一,与字段out_shop_id不能同时为空
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
}
|
||
}
|