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