jack
2024-03-27 9b857ed9a9c6e07cc656622b0664109e61638041
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
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;
 
 
}