me.chanjar.weixin.channel.bean.fund.WithdrawListResponse Maven / Gradle / Ivy
package me.chanjar.weixin.channel.bean.fund;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import lombok.Data;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;
/**
* 提现列表响应
*
* @author Zeyes
*/
@Data
@NoArgsConstructor
public class WithdrawListResponse extends WxChannelBaseResponse {
private static final long serialVersionUID = -7950467108750325235L;
/** 提现单号列表 */
@JsonProperty("withdraw_ids")
private List withdrawIds;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy