apzl_leasing/src_tenwa/com/tenwa/cgbbank/dto/CGB0032ReqBody.java
2023-07-25 10:22:56 +08:00

116 lines
3.2 KiB
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.tenwa.cgbbank.dto;
/**
* 名称 变量名称 类型长度 缺省值 备注
* 账号 account 32 被查询账号,必填
* 开始日期 beginDate 8 日期格式(YYYYMMDD),必填
* 结束日期 endDate 8 日期格式(YYYYMMDD),必填
* 查询类型 queryType 1 0全部、1付款、2收款。暂只支持“0全部”
* 起始记录交易日期 beginRecTranDate 8 第一次查询为空,非第一次查询为查询的第一条记录的交易日期,由上页查询获得,日期格式(YYYYMMDD)
* 起始记录交易代号 beginRecTranCode 5 1.第一次查询为空2.非第一次查询为查询的第一条记录的交易代号,由上页查询获得
* 起始记录CBS交易流水号 beginRecTranSeq 12 第一次查询为空非第一次查询为查询的第一条记录的CBS交易流水号由上页查询获得
* 查询笔数 queryNumber 6 必填大于0并且小于或等于1000
* 保留字段1 reserve1 50 预留字段,暂时未使用
* 保留字段2 reserve2 50 预留字段,暂时未使用
*/
/**
* @program: apzl_leasing
* @description:
* @author: 李超杰
* @create: 2023-06-07 09:40
*/
public class CGB0032ReqBody {
String account;
String beginDate;
String endDate;
Integer queryType;
String beginRecTranDate;
String beginRecTranCode;
String beginRecTranSeq;
Integer queryNumber;
String reserve1;
String reserve2;
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getBeginDate() {
return beginDate;
}
public void setBeginDate(String beginDate) {
this.beginDate = beginDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public Integer getQueryType() {
return queryType;
}
public void setQueryType(Integer queryType) {
this.queryType = queryType;
}
public String getBeginRecTranDate() {
return beginRecTranDate;
}
public void setBeginRecTranDate(String beginRecTranDate) {
this.beginRecTranDate = beginRecTranDate;
}
public String getBeginRecTranCode() {
return beginRecTranCode;
}
public void setBeginRecTranCode(String beginRecTranCode) {
this.beginRecTranCode = beginRecTranCode;
}
public String getBeginRecTranSeq() {
return beginRecTranSeq;
}
public void setBeginRecTranSeq(String beginRecTranSeq) {
this.beginRecTranSeq = beginRecTranSeq;
}
public Integer getQueryNumber() {
return queryNumber;
}
public void setQueryNumber(Integer queryNumber) {
this.queryNumber = queryNumber;
}
public String getReserve1() {
return reserve1;
}
public void setReserve1(String reserve1) {
this.reserve1 = reserve1;
}
public String getReserve2() {
return reserve2;
}
public void setReserve2(String reserve2) {
this.reserve2 = reserve2;
}
}