You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
610 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiItemModifyResponse.
/// </summary>
public class KoubeiItemModifyResponse : AopResponse
{
/// <summary>
/// 口碑体系内部商品的唯一标识后续的增删改查接口都使用该ID作为主键
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 即入参中的request_id
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}