NewGaoKaoApi/PaymentSDK/AliPay/Domain/KmsBakingSalesForecastDTO.cs

49 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KmsBakingSalesForecastDTO Data Structure.
/// </summary>
[Serializable]
public class KmsBakingSalesForecastDTO : AopObject
{
/// <summary>
/// 预测日期
/// </summary>
[XmlElement("forecast_date")]
public string ForecastDate { get; set; }
/// <summary>
/// 预测级别预测分为5个等级 A、B、C、D、E不可预测 1、E不可预测当sku的历史数据小于等于14条不进行预测提示数据量较少无法进行预测。T+1T+2T+3均为空。 2、D当sku的历史数据大于14条小于等于60条。只有库存数据为D-有营销数据为D 3、C当sku的历史数据大于60条小于等于180条。只有库存数据为C-有营销库存数据为C 4、B当sku的历史数据大于180条小于等于400条。只有库存数据为B-有营销数据为B 5、A当sku的历史数据大于400条。只有库存数据为A-有营销o数据为A
/// </summary>
[XmlElement("forecast_level")]
public string ForecastLevel { get; set; }
/// <summary>
/// 商品skuId
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
/// <summary>
/// t+1日预测数据
/// </summary>
[XmlElement("t_plus_one")]
public string TPlusOne { get; set; }
/// <summary>
/// t+3日预测数据
/// </summary>
[XmlElement("t_plus_three")]
public string TPlusThree { get; set; }
/// <summary>
/// t+2日预测数据
/// </summary>
[XmlElement("t_plus_two")]
public string TPlusTwo { get; set; }
}
}