KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
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
package cc.mrbird.febs.mall.dto;
 
import lombok.Data;
import java.math.BigDecimal;
 
/**
 *
 *
 * {"minCashOut":100,"allCashOut":5000,"serviceFee":0.3,"workingDays":1,"insideFee":5}
 *
 *
 */
@Data
public class CashOutSettingDto {
    //每次提现最小金额
    private BigDecimal minCashOut;
    //金额每日累计上限
    private BigDecimal allCashOut;
    //提现手续费率
    private BigDecimal serviceFee;
    //提现时间 1:工作日 2:每一天
    private Integer workingDays;
    //互转手续费率
    private Integer insideFee;
    private String urlStr;
    private String verifyIp;
    private String verifyPort;
    private String fkzh;
    private String customerId;
    private String softwareId;
}