Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/dto/QueryAcctFlowDTO.java
2023-08-21 08:53:54 +08:00

45 lines
951 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.adapay.dto;
import lombok.Data;
/**
* 查询账务流水DTO
*/
@Data
public class QueryAcctFlowDTO {
/**
* 控制台 主页面应用的app_id
*/
private String wechatAppId;
/**
* 用户对象的member_id若查询商户本身时传入值0
*/
private String adapayMemberId;
/**
* 账户类型01-基本户02-手续费账户03-临时过渡户,若查询主体为用户,则只支持查询基本户
*/
private String acctType;
/**
* 当前页码取值范围1~10000默认值为1
*/
private Integer pageNo;
/**
* 页面容量取值范围1~100默认值为10
*/
private Integer pageSize;
/**
* 查询起始日期,格式为 yyyyMMdd
*/
private String beginDate;
/**
* 查询结束日期,格式为 yyyyMMdd日期间隔必须小于等于7天
*/
private String endDate;
}