43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenServicemarketCommoditySmartcitySyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenServicemarketCommoditySmartcitySyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 服务基础信息
|
||
/// </summary>
|
||
[XmlElement("commodity_base_info")]
|
||
public CommodityBaseInfo CommodityBaseInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 服务ID
|
||
/// </summary>
|
||
[XmlElement("commodity_id")]
|
||
public string CommodityId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否预发环境数据,1是,0否
|
||
/// </summary>
|
||
[XmlElement("is_pre")]
|
||
public string IsPre { get; set; }
|
||
|
||
/// <summary>
|
||
/// 新型智慧城市服务扩展信息
|
||
/// </summary>
|
||
[XmlElement("smart_city_commodity_info")]
|
||
public SmartCityCommodityInfo SmartCityCommodityInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 蚂蚁统一会员ID
|
||
/// </summary>
|
||
[XmlElement("user_id")]
|
||
public string UserId { get; set; }
|
||
}
|
||
}
|