using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Card { /// /// 校验核销优惠券 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class IntegralAdjustmentResponse { private decimal preTotalPoint; private decimal aftTotalPoint; /// /// 操作前积分 /// [JsonProperty(PropertyName = "preTotalPoint")] public decimal PreTotalPoint { get => preTotalPoint; set => preTotalPoint = value; } /// /// 操作后积分 /// [JsonProperty(PropertyName = "aftTotalPoint")] public decimal AftTotalPoint { get => aftTotalPoint; set => aftTotalPoint = value; } } }