1+ <?php
2+
3+ namespace Request \aba ;
4+
5+ use Model \AntomPathConstants ;
6+ use Request \AlipayRequest ;
7+
8+ class AlipayInquiryStatementListRequest extends AlipayRequest
9+ {
10+
11+ public $ customerId ;
12+ public $ accessToken ;
13+ public $ startTime ;
14+ public $ endTime ;
15+ public $ transactionTypeList ;
16+ public $ currencyList ;
17+ public $ pageSize ;
18+ public $ pageNumber ;
19+
20+
21+
22+ function __construct ()
23+ {
24+ $ this ->setPath (AntomPathConstants::ABA_INQUERY_STATEMENT_LIST_PATH );
25+ }
26+
27+ /**
28+ * @return mixed
29+ */
30+ public function getCustomerId ()
31+ {
32+ return $ this ->customerId ;
33+ }
34+
35+ /**
36+ * @param mixed $customerId
37+ */
38+ public function setCustomerId ($ customerId ): void
39+ {
40+ $ this ->customerId = $ customerId ;
41+ }
42+
43+ /**
44+ * @return mixed
45+ */
46+ public function getAccessToken ()
47+ {
48+ return $ this ->accessToken ;
49+ }
50+
51+ /**
52+ * @param mixed $accessToken
53+ */
54+ public function setAccessToken ($ accessToken ): void
55+ {
56+ $ this ->accessToken = $ accessToken ;
57+ }
58+
59+ /**
60+ * @return mixed
61+ */
62+ public function getStartTime ()
63+ {
64+ return $ this ->startTime ;
65+ }
66+
67+ /**
68+ * @param mixed $startTime
69+ */
70+ public function setStartTime ($ startTime ): void
71+ {
72+ $ this ->startTime = $ startTime ;
73+ }
74+
75+ /**
76+ * @return mixed
77+ */
78+ public function getEndTime ()
79+ {
80+ return $ this ->endTime ;
81+ }
82+
83+ /**
84+ * @param mixed $endTime
85+ */
86+ public function setEndTime ($ endTime ): void
87+ {
88+ $ this ->endTime = $ endTime ;
89+ }
90+
91+ /**
92+ * @return mixed
93+ */
94+ public function getTransactionTypeList ()
95+ {
96+ return $ this ->transactionTypeList ;
97+ }
98+
99+ /**
100+ * @param mixed $transactionTypeList
101+ */
102+ public function setTransactionTypeList ($ transactionTypeList ): void
103+ {
104+ $ this ->transactionTypeList = $ transactionTypeList ;
105+ }
106+
107+ /**
108+ * @return mixed
109+ */
110+ public function getCurrencyList ()
111+ {
112+ return $ this ->currencyList ;
113+ }
114+
115+ /**
116+ * @param mixed $currencyList
117+ */
118+ public function setCurrencyList ($ currencyList ): void
119+ {
120+ $ this ->currencyList = $ currencyList ;
121+ }
122+
123+ /**
124+ * @return mixed
125+ */
126+ public function getPageSize ()
127+ {
128+ return $ this ->pageSize ;
129+ }
130+
131+ /**
132+ * @param mixed $pageSize
133+ */
134+ public function setPageSize ($ pageSize ): void
135+ {
136+ $ this ->pageSize = $ pageSize ;
137+ }
138+
139+ /**
140+ * @return mixed
141+ */
142+ public function getPageNumber ()
143+ {
144+ return $ this ->pageNumber ;
145+ }
146+
147+ /**
148+ * @param mixed $pageNumber
149+ */
150+ public function setPageNumber ($ pageNumber ): void
151+ {
152+ $ this ->pageNumber = $ pageNumber ;
153+ }
154+
155+
156+
157+
158+
159+ }
0 commit comments