Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
952 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}