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.

53 lines
1.3 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.WeiXin
{
/// <summary>
/// 商品信息列表
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class WxdcGoodsListRequest
{
/// <summary>
/// 微信门店
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 商品分类ID
/// </summary>
[JsonProperty(PropertyName = "categoryId")]
public string CategoryId { get; set; }
/// <summary>
/// 查询属性
/// </summary>
[JsonProperty(PropertyName = "property")]
public string Property { get; set; }
/// <summary>
/// 查询关键字
/// </summary>
[JsonProperty(PropertyName = "keyword")]
public string Keyword { get; set; }
/// <summary>
/// 页码(默认1)
/// </summary>
[JsonProperty(PropertyName = "pageNumber")]
public int PageNumber { get; set; }
/// <summary>
/// 每页显示(默认10条)
/// </summary>
[JsonProperty(PropertyName = "pageSize")]
public int PageSize { get; set; }
}
}