| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | * @date 2024/12/18 18:03 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "RechargeDto对象", description = "充值设置") |
| | | public class RechargeDto { |
| | | @ApiModelProperty(value = "重置限额") |
| | | private BigDecimal resetQuota; |
| | | private List<RechargeSet> rechargeDto; |
| | | } |