zj
2024-06-03 7479d2c5169265cf29e432a30b22c31073106751
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
 
}