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;
|
|
|
|
}
|