1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.other.dto;
|
| import com.ruoyi.other.api.domain.RechargeSet;
| import lombok.Data;
| import org.springframework.format.annotation.DateTimeFormat;
|
| import java.util.List;
|
| /**
| * @author zhibing.pu
| * @date 2024/12/18 18:03
| */
| @Data
| public class RechargeDto {
| private List<RechargeSet> rechargeSets;
| }
|
|