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.
33 lines
610 B
33 lines
610 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−11-21 10:32
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class BankDTO {
|
|
//时间格式yyyyMMdd
|
|
private String time = "";
|
|
//订单号
|
|
private String orderNo = "";
|
|
//交易ID
|
|
private String transactionId = "";
|
|
//最大条数
|
|
private int sum;
|
|
//开始时间
|
|
private String startTime = "";
|
|
//结束时间
|
|
private String endTime = "";
|
|
|
|
}
|