using GDZZ.Application;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Service.WXPay.Dto
{
///
///
///
public class ConsumeOut
{
///
/// 消费类型
///
public ConsumeEnum Sort { get; set; }
///
/// 沟通ID
///
public long? ResumeID { get; set; }
///
/// 消费金额
///
public decimal CAmount { get; set; }
///
/// 余额
///
public decimal Surplus { get; set; }
///
/// 用户ID
///
public long UserID { get; set; }
}
}