luodangjia
2025-01-24 c90a8ac772937f8f084356ea1f04c5dba1d9e5d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.other.dto;
 
import com.ruoyi.other.api.domain.RechargeSet;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2024/12/18 18:03
 */
@Data
@ApiModel(value = "RechargeDto对象", description = "充值设置")
public class RechargeDto {
    @ApiModelProperty(value = "重置限额")
    private BigDecimal resetQuota;
    private List<RechargeSet> rechargeDto;
}