|
|
@ -1,5 +1,7 @@ |
|
|
package bc.mm.mis.core.bean; |
|
|
package bc.mm.mis.core.bean; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
import javax.persistence.*; |
|
|
import java.math.BigInteger; |
|
|
import java.math.BigInteger; |
|
|
import java.util.Date; |
|
|
import java.util.Date; |
|
|
@ -13,82 +15,106 @@ public class Coins { |
|
|
private Integer coinId; |
|
|
private Integer coinId; |
|
|
|
|
|
|
|
|
@Column(name = "coin_name") |
|
|
@Column(name = "coin_name") |
|
|
|
|
|
@JsonProperty("coin_name") |
|
|
private String coinName; |
|
|
private String coinName; |
|
|
|
|
|
|
|
|
private String symbol; |
|
|
private String symbol; |
|
|
|
|
|
|
|
|
@Column(name = "qty_decimals") |
|
|
@Column(name = "qty_decimals") |
|
|
|
|
|
@JsonProperty("qty_decimals") |
|
|
private Integer qtyDecimals; |
|
|
private Integer qtyDecimals; |
|
|
|
|
|
|
|
|
@Column(name = "price_decimals") |
|
|
@Column(name = "price_decimals") |
|
|
|
|
|
@JsonProperty("price_decimals") |
|
|
private Integer priceDecimals; |
|
|
private Integer priceDecimals; |
|
|
|
|
|
|
|
|
@Column(name = "full_name") |
|
|
@Column(name = "full_name") |
|
|
|
|
|
@JsonProperty("full_name") |
|
|
private String fullName; |
|
|
private String fullName; |
|
|
private String trc20; |
|
|
private String trc20; |
|
|
|
|
|
|
|
|
@Column(name = "withdrawal_fee") |
|
|
@Column(name = "withdrawal_fee") |
|
|
|
|
|
@JsonProperty("withdrawal_fee") |
|
|
private String withdrawalFee; |
|
|
private String withdrawalFee; |
|
|
|
|
|
|
|
|
@Column(name = "withdrawal_min") |
|
|
@Column(name = "withdrawal_min") |
|
|
|
|
|
@JsonProperty("withdrawal_min") |
|
|
private String withdrawalMin; |
|
|
private String withdrawalMin; |
|
|
|
|
|
|
|
|
@Column(name = "withdrawal_max") |
|
|
@Column(name = "withdrawal_max") |
|
|
|
|
|
@JsonProperty("withdrawal_max") |
|
|
private String withdrawalMax; |
|
|
private String withdrawalMax; |
|
|
|
|
|
|
|
|
@Column(name = "coin_withdraw_message") |
|
|
@Column(name = "coin_withdraw_message") |
|
|
|
|
|
@JsonProperty("coin_withdraw_message") |
|
|
private String coinWithrawMessage; |
|
|
private String coinWithrawMessage; |
|
|
|
|
|
|
|
|
@Column(name = "coin_recharge_message") |
|
|
@Column(name = "coin_recharge_message") |
|
|
|
|
|
@JsonProperty("coin_recharge_message") |
|
|
private String coinRechargeMessage; |
|
|
private String coinRechargeMessage; |
|
|
|
|
|
|
|
|
@Column(name = "coin_transfer_message") |
|
|
@Column(name = "coin_transfer_message") |
|
|
|
|
|
@JsonProperty("coin_transfer_message") |
|
|
private String coinTransferMessage; |
|
|
private String coinTransferMessage; |
|
|
|
|
|
|
|
|
@Column(name = "coin_content") |
|
|
@Column(name = "coin_content") |
|
|
|
|
|
@JsonProperty("coin_content") |
|
|
private String coinContent; |
|
|
private String coinContent; |
|
|
|
|
|
|
|
|
@Column(name = "coin_icon") |
|
|
@Column(name = "coin_icon") |
|
|
|
|
|
@JsonProperty("coin_icon") |
|
|
private String coinIcon; |
|
|
private String coinIcon; |
|
|
private Integer status; |
|
|
private Integer status; |
|
|
private String appKey; |
|
|
private String appKey; |
|
|
private String appSecret; |
|
|
private String appSecret; |
|
|
|
|
|
|
|
|
@Column(name = "official_website_link") |
|
|
@Column(name = "official_website_link") |
|
|
|
|
|
@JsonProperty("official_website_link") |
|
|
private String officialWebsiteLink; |
|
|
private String officialWebsiteLink; |
|
|
|
|
|
|
|
|
@Column(name = "white_paper_link") |
|
|
@Column(name = "white_paper_link") |
|
|
|
|
|
@JsonProperty("white_paper_link") |
|
|
private String whitePaperLink; |
|
|
private String whitePaperLink; |
|
|
|
|
|
|
|
|
@Column(name = "block_query_link") |
|
|
@Column(name = "block_query_link") |
|
|
|
|
|
@JsonProperty("block_query_link") |
|
|
private String blockQueryLink; |
|
|
private String blockQueryLink; |
|
|
|
|
|
|
|
|
@Column(name = "public_time") |
|
|
@Column(name = "publish_time") |
|
|
|
|
|
@JsonProperty("publish_time") |
|
|
private Date pulishTime; |
|
|
private Date pulishTime; |
|
|
|
|
|
|
|
|
@Column(name = "total_issuance") |
|
|
@Column(name = "total_issuance") |
|
|
|
|
|
@JsonProperty("total_issuance") |
|
|
private BigInteger totalIssuance; |
|
|
private BigInteger totalIssuance; |
|
|
|
|
|
|
|
|
@Column(name = "total_circulation") |
|
|
@Column(name = "total_circulation") |
|
|
|
|
|
@JsonProperty("total_circulation") |
|
|
private BigInteger totalCirculation; |
|
|
private BigInteger totalCirculation; |
|
|
|
|
|
|
|
|
@Column(name = "crowdfunding_price") |
|
|
@Column(name = "crowdfunding_price") |
|
|
|
|
|
@JsonProperty("crowdfunding_price") |
|
|
private String crowdfundingPrice; |
|
|
private String crowdfundingPrice; |
|
|
private Integer order; |
|
|
private Integer order; |
|
|
|
|
|
|
|
|
@Column(name = "is_withdraw") |
|
|
@Column(name = "is_withdraw") |
|
|
|
|
|
@JsonProperty("is_withdraw") |
|
|
private Integer isWithdraw; |
|
|
private Integer isWithdraw; |
|
|
|
|
|
|
|
|
@Column(name = "is_recharge") |
|
|
@Column(name = "is_recharge") |
|
|
|
|
|
@JsonProperty("is_recharge") |
|
|
private Integer isRecharge; |
|
|
private Integer isRecharge; |
|
|
|
|
|
|
|
|
@Column(name = "can_recharge") |
|
|
@Column(name = "can_recharge") |
|
|
|
|
|
@JsonProperty("can_recharge") |
|
|
private Integer canRecharge; |
|
|
private Integer canRecharge; |
|
|
|
|
|
|
|
|
@Column(name = "created_at") |
|
|
@Column(name = "created_at") |
|
|
|
|
|
@JsonProperty("created_at") |
|
|
private Date createdAt; |
|
|
private Date createdAt; |
|
|
|
|
|
|
|
|
@Column(name = "updated_at") |
|
|
@Column(name = "updated_at") |
|
|
|
|
|
@JsonProperty("updated_at") |
|
|
private Date updatedAt; |
|
|
private Date updatedAt; |
|
|
private Integer sort; |
|
|
private Integer sort; |
|
|
|
|
|
|
|
|
|