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.

60 lines
1.4 KiB
C#

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.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Stock
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class AskgoodsPredictionProductCostTickets
{
/// <summary>
/// 商品Id
/// </summary>
[JsonProperty(PropertyName = "productId")]
public string ProductId { get; set; }
/// <summary>
/// 商品编号
/// </summary>
[JsonProperty(PropertyName = "productNo")]
public string ProductNo { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[JsonProperty(PropertyName = "productName")]
public string ProductName { get; set; }
/// <summary>
/// 今日库存
/// </summary>
[JsonProperty(PropertyName = "todayStock")]
public string TodayStock { get; set; }
/// <summary>
/// 录入日期格式yyyy-MM-dd
/// </summary>
[JsonProperty(PropertyName = "summaryDate")]
public string SummaryDate { get; set; }
/// <summary>
/// 昨日库存
/// </summary>
[JsonProperty(PropertyName = "yeterdayStock")]
public string YeterdayStock { get; set; }
/// <summary>
/// 今日入库
/// </summary>
[JsonProperty(PropertyName = "todayIn")]
public string TodayIn { get; set; }
}
}