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

io.github.ealenxie.goodcang.base.Balance Maven / Gradle / Ivy

The newest version!
package io.github.ealenxie.goodcang.base;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

/**
 * @author EalenXie created on 2023/6/25 12:39
 */
@Getter
@Setter
public class Balance {
    /**
     * 币种编码
     */
    @JsonProperty("currency_code")
    private String currencyCode;
    /**
     * 金额
     */
    @JsonProperty("amount")
    private String amount;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy