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.

32 lines
799 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 AskgoodsPredictionProductResponse
{
/// <summary>
/// 经营会计报表录入库存
/// </summary>
[JsonProperty(PropertyName = "costTickets")]
public List<AskgoodsPredictionProductCostTickets> costTickets { get; set; }
/// <summary>
/// 配送待入库数量
/// </summary>
[JsonProperty(PropertyName = "dispatchTickets")]
public List<AskgoodsPredictionProductDispatchTickets> DispatchTickets { get; set; }
}
}