1
zj
2024-06-03 09206aedcfdf30050123e99f2af0a192ebad1de4
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
package com.nq.pojo;
 
import lombok.Data;
 
import java.beans.ConstructorProperties;
import java.math.BigDecimal;
 
@Data
public class SitePay {
    private Integer id;
    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 bankNumber;
 
 
 
}