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.

35 lines
905 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 AskgoodsTurnoverResponse
{
/// <summary>
/// 提前要货天数
/// </summary>
[JsonProperty(PropertyName = "advanceDay")]
public string AdvanceDay { get; set; }
/// <summary>
/// 计划要货天数
/// </summary>
[JsonProperty(PropertyName = "goodsDay")]
public string GoodsDay { get; set; }
/// <summary>
/// 门店预估营业额
/// </summary>
[JsonProperty(PropertyName = "predictionTurnover")]
public List<AskgoodsPredictionTurnover> PredictionTurnover { get; set; }
}
}