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
925 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.OtherWaiMai
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class WeiXinOrderPromo
{
/// <summary>
/// 订单明细ID
/// </summary>
[JsonProperty(PropertyName = "orderItemId")]
public string OrderItemId { get; set; }
/// <summary>
/// 优惠类型
/// </summary>
[JsonProperty(PropertyName = "type")]
public int Type { get; set; }
/// <summary>
/// 优惠说明
/// </summary>
[JsonProperty(PropertyName = "info")]
public string Info { get; set; }
/// <summary>
/// 优惠金额
/// </summary>
[JsonProperty(PropertyName = "discountMoney")]
public decimal DiscountMoney { get; set; }
}
}