查询站点订单日报详情

This commit is contained in:
2023-08-22 09:42:30 +08:00
parent 0bbde0245d
commit 36fe313a82
22 changed files with 321 additions and 21 deletions

View File

@@ -6,13 +6,23 @@ import lombok.Setter;
@Getter
@Setter
public class SettleOrderReportDTO {
private String merchantId;
/**
* 站点id
*/
private String stationId;
/**
* 交易日期
*/
private String tradeDate;
/**
* 当前页码
*/
private Integer pageNum;
/**
* 页面容量
*/
private Integer pageSize;
}