KKSU
2024-08-28 57bd5c68e1f71aa9cbd0bf2d561a736db3b0cbbf
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
42
43
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class AdminGfaBasicSetDto {
    private String startTime;
 
    private String endTime;
 
    private String outFcmFee;
 
    private String fcmPrice;
 
    private String fcmDesToryCnt;
 
    private String fcmDesToryTotal;
 
    private String nftFee;
 
    private String outFcmMin;
 
    private String nftMin;
 
    private String frozenFcmCnt;
 
    private String minuteCnt;
 
    private String fcmDesToryCntPercent;
 
    private String fcmDesToryCntPointPercent;
 
    //@ApiModelProperty(value = "卡牌互转标识 1-允许 0-拒绝")
    private String aroundType;
    //@ApiModelProperty(value = "FDH兑换标识 1-允许 0-拒绝")
    private String changeType;
 
    private String aroundInsideType;
 
    private String coinWithdraw;
 
}