19 lines
453 B
C#
19 lines
453 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiItemExtitemCategoryQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiItemExtitemCategoryQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 父品类编码. (查询顶级类目时值传0)
|
|
/// </summary>
|
|
[XmlElement("parent_id")]
|
|
public string ParentId { get; set; }
|
|
}
|
|
}
|