using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; using Tea; namespace LifePayment.Domain { public class FundAccountQueryResponse : AlipayBaseOutput { /// /// 可用余额。可用于支付或提现的余额。 /// [NameInMap("available_amount")] public string AvailableAmount { set; get; } } }