You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
349 B

package com.example.demo.domain.DTO;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* @program: gold-java
* @ClassName BankDTO
* @description:
* @author: Double
* @create: 2025−10-27 11:16
* @Version 1.0
**/
@Data
@NoArgsConstructor
public class BankDTO {
private List<PaymentDTO> paymentDTOList;
}