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.

30 lines
737 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Stock
{
/// <summary>
/// 查询门店商品库存信息请求数据
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class AskgoodsPredictionProductRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 商品Ids(多个Id以","分割。例:"a123456,a1234567,a12345678")
/// </summary>
[JsonProperty(PropertyName = "productIds")]
public string ProductIds { get; set; }
}
}