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.

34 lines
808 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.QiMai
{
/// <summary>
/// 企迈订单信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class QiMaiOrderGoods
{
/// <summary>
/// 分组名称
/// </summary>
[JsonProperty(PropertyName = "pay_user")]
public string PayUser { get; set; }
/// <summary>
/// 名称
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// 商品信息的列表
/// </summary>
[JsonProperty(PropertyName = "goods")]
public List<QiMaiOrderItem> Goods { get; set; }
}
}