All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.binarywang.wxpay.bean.result.WxPayFundFlowResult Maven / Gradle / Ivy

The newest version!
package com.github.binarywang.wxpay.bean.result;

import lombok.Data;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;

import java.io.Serializable;
import java.util.List;

/**
 * 
 * 下载资金账单接口响应结果对象类
 * Created by cwivan on 2018-08-02.
 * 
* * @author cwivan */ @Data @NoArgsConstructor public class WxPayFundFlowResult implements Serializable { private static final long serialVersionUID = 8371500036495349207L; @Override public String toString() { return WxGsonBuilder.create().toJson(this); } /** * 资金流水返回对象. */ private List wxPayFundFlowBaseResultList; /** * 资金流水总笔数 */ private String totalRecord; /** * 收入笔数 */ private String incomeRecord; /** * 收入金额 */ private String incomeAmount; /** * 支出笔数 */ private String expenditureRecord; /** * 支出金额 */ private String expenditureAmount; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy