using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Service.WXPay.Dto
{
///
///
///
public class BalanceOut
{
///
/// 用户ID
///
public long UserID { get; set; }
///
/// 余额
///
public decimal Amount { get; set; }
}
}