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

me.chanjar.weixin.channel.bean.fund.AccountInfoParam Maven / Gradle / Ivy

package me.chanjar.weixin.channel.bean.fund;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 账户信息
 *
 * @author Zeyes
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AccountInfoParam implements Serializable {

  private static final long serialVersionUID = 1689204583402779134L;
  @JsonProperty("account_info")
  private AccountInfo accountInfo;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy