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.

39 lines
971 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Stock
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class AskgoodsPredictionProductDispatchTickets
{
/// <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 = "dispatchStock")]
public string DispatchStock { get; set; }
}
}