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.

29 lines
724 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.OtherWaiMai
{
/// <summary>
/// 商家对账信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class MeiTuanOrderReceiveDetail
{
/// <summary>
/// 美团平台扣费(分)
/// </summary>
[JsonProperty(PropertyName = "foodShareFeeChargeByPoi")]
public int FoodShareFeeChargeByPoi { get; set; }
/// <summary>
/// 商家应收款(分)
/// </summary>
[JsonProperty(PropertyName = "wmPoiReceiveCent")]
public int WmPoiReceiveCent { get; set; }
}
}