using System.Text; using PaySharp.Core.Request; namespace PaySharp.Wechatpay.Response { public class FundFlowDownloadResponse : BaseResponse { /// /// 获取账单文件 /// public byte[] GetBillFile() { return _billFile; } private byte[] _billFile; internal override void Execute(Merchant merchant, Request request) { if (!string.IsNullOrEmpty(Raw)) { _billFile = Encoding.UTF8.GetBytes(Raw); } } } }