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.

20 lines
449 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.OtherWaiMai
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class PoiReceiveDetail
{
/// <summary>
/// 商家应收款,单位:分
/// </summary>
[JsonProperty(PropertyName = "wmPoiReceiveCent")]
public int WmPoiReceiveCent { get; set; }
}
}