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.

73 lines
1.9 KiB
C#

9 months ago
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 AskgoodsPredictionTurnover
{
/// <summary>
/// 门店Id
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[JsonProperty(PropertyName = "storeName")]
public string StoreName { get; set; }
/// <summary>
/// 门店编号
/// </summary>
[JsonProperty(PropertyName = "storeNo")]
public string StoreNo { get; set; }
/// <summary>
/// 预估日(格式:星期数)
/// </summary>
[JsonProperty(PropertyName = "weekDay")]
public string WeekDay { get; set; }
/// <summary>
/// 预估日格式yyyy-MM-dd
/// </summary>
[JsonProperty(PropertyName = "dateTime")]
public string DateTime { get; set; }
/// <summary>
/// 预估金额
/// </summary>
[JsonProperty(PropertyName = "preDictionAmount")]
public decimal PreDictionAmount { get; set; }
/// <summary>
/// 预估金额依据数据(历史同期营业记录)
/// </summary>
[JsonProperty(PropertyName = "histrylist")]
public List <AskgoodsPredictionTurnoverHistrylist> Histrylist { get; set; }
/// <summary>
/// 浮动
/// </summary>
public string PreDictionAmountExplain { get; set; }
/// <summary>
/// 浮动后金额
/// </summary>
public decimal PreDictionAmountFloat
{
get;
set;
}
}
}