package com.nq.pojo; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import org.codehaus.jackson.annotate.JsonIgnore; import java.beans.ConstructorProperties; import java.math.BigDecimal; @Data public class SitePay { private Integer id; @JsonProperty private Integer cType; private String formUrl; private String formCode; private String channelType; private String channelName; // 银行名字 private String channelDesc; private String channelAccount; // 收款人名称 private String channelImg; private Integer channelMinLimit; private Integer channelMaxLimit; private Integer isShow; private Integer isLock; /*累计充值金额*/ private BigDecimal totalPrice; private String assetsType; private String bankAddress; /** * 汇率 */ private double exchangeRate; }