36 lines
952 B
C#
36 lines
952 B
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// CommodityExtInfoConfirm Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class CommodityExtInfoConfirm : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 城市上架结果 【 0:表示失败, 1:表示成功】
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("city_status")]
|
|||
|
|
public string CityStatus { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 挂载ID,用于确认唯一记录的主键对象
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("displayapp_id")]
|
|||
|
|
public string DisplayappId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 修改城市记录映射对应的原有的挂载id,如果原有服务没有上架城市,该参数为空
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("mapping_displayapp_id")]
|
|||
|
|
public string MappingDisplayappId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 城市上架失败原因
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("memo")]
|
|||
|
|
public string Memo { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|