47
47
#include " MDQrCheck_200_response.h"
48
48
#include " MDQrCreate_200_response.h"
49
49
#include " MDSearch_200_response.h"
50
- #include " MDSendCaptcha_200_response .h"
50
+ #include " MDVerifyCaptcha_200_response .h"
51
51
#include < QString>
52
52
53
53
#include < QObject>
@@ -110,9 +110,9 @@ class MDClientApi : public QObject {
110
110
void dailySongRecommend ();
111
111
112
112
/* *
113
- * @param[in] timestamp double [required]
113
+ * @param[in] timestamp qint32 [required]
114
114
*/
115
- void getAccountInfo (const double ×tamp);
115
+ void getAccountInfo (const qint32 ×tamp);
116
116
117
117
/* *
118
118
* @param[in] id QString [required]
@@ -131,19 +131,19 @@ class MDClientApi : public QObject {
131
131
void getArtistSingle (const QString &id);
132
132
133
133
/* *
134
- * @param[in] timestamp double [required]
134
+ * @param[in] timestamp qint32 [required]
135
135
*/
136
- void getArtistSublist (const double ×tamp);
136
+ void getArtistSublist (const qint32 ×tamp);
137
137
138
138
/* *
139
139
* @param[in] uid QString [required]
140
140
*/
141
141
void getLikeSongId (const QString &uid);
142
142
143
143
/* *
144
- * @param[in] timestamp double [required]
144
+ * @param[in] timestamp qint32 [required]
145
145
*/
146
- void getLoginStatus (const double ×tamp);
146
+ void getLoginStatus (const qint32 ×tamp);
147
147
148
148
/* *
149
149
* @param[in] id QString [required]
@@ -173,9 +173,9 @@ class MDClientApi : public QObject {
173
173
void getPurchasedAlbum (const ::MelodixAPI::OptionalParam<double > &limit = ::MelodixAPI::OptionalParam<double >());
174
174
175
175
/* *
176
- * @param[in] timestamp double [required]
176
+ * @param[in] timestamp qint32 [required]
177
177
*/
178
- void getQrKey (const double ×tamp);
178
+ void getQrKey (const qint32 ×tamp);
179
179
180
180
181
181
void getRecommendResource ();
@@ -225,22 +225,22 @@ class MDClientApi : public QObject {
225
225
/* *
226
226
* @param[in] id QString [required]
227
227
* @param[in] like QString [required]
228
- * @param[in] timestamp double [required]
228
+ * @param[in] timestamp qint32 [required]
229
229
*/
230
- void likeMusic (const QString &id, const QString &like, const double ×tamp);
230
+ void likeMusic (const QString &id, const QString &like, const qint32 ×tamp);
231
231
232
232
/* *
233
233
* @param[in] key QString [required]
234
- * @param[in] timestamp double [required]
234
+ * @param[in] timestamp qint32 [required]
235
235
*/
236
- void qrCheck (const QString &key, const double ×tamp);
236
+ void qrCheck (const QString &key, const qint32 ×tamp);
237
237
238
238
/* *
239
239
* @param[in] key QString [required]
240
- * @param[in] timestamp double [required]
240
+ * @param[in] timestamp qint32 [required]
241
241
* @param[in] qrimg double [optional]
242
242
*/
243
- void qrCreate (const QString &key, const double ×tamp, const ::MelodixAPI::OptionalParam<double > &qrimg = ::MelodixAPI::OptionalParam<double >());
243
+ void qrCreate (const QString &key, const qint32 ×tamp, const ::MelodixAPI::OptionalParam<double > &qrimg = ::MelodixAPI::OptionalParam<double >());
244
244
245
245
/* *
246
246
* @param[in] keywords QString [required]
@@ -254,7 +254,7 @@ class MDClientApi : public QObject {
254
254
* @param[in] phone double [required]
255
255
* @param[in] ctcode double [optional]
256
256
*/
257
- void sendCaptcha (const double &phone, const ::MelodixAPI::OptionalParam<double > &ctcode = ::MelodixAPI::OptionalParam<double >());
257
+ void sentCaptcha (const double &phone, const ::MelodixAPI::OptionalParam<double > &ctcode = ::MelodixAPI::OptionalParam<double >());
258
258
259
259
/* *
260
260
* @param[in] phone double [required]
@@ -315,7 +315,7 @@ class MDClientApi : public QObject {
315
315
void qrCheckCallback (MDHttpRequestWorker *worker);
316
316
void qrCreateCallback (MDHttpRequestWorker *worker);
317
317
void searchCallback (MDHttpRequestWorker *worker);
318
- void sendCaptchaCallback (MDHttpRequestWorker *worker);
318
+ void sentCaptchaCallback (MDHttpRequestWorker *worker);
319
319
void verifyCaptchaCallback (MDHttpRequestWorker *worker);
320
320
321
321
signals:
@@ -350,8 +350,8 @@ class MDClientApi : public QObject {
350
350
void qrCheckSignal (MDQrCheck_200_response summary);
351
351
void qrCreateSignal (MDQrCreate_200_response summary);
352
352
void searchSignal (MDSearch_200_response summary);
353
- void sendCaptchaSignal (MDSendCaptcha_200_response summary);
354
- void verifyCaptchaSignal (MDSendCaptcha_200_response summary);
353
+ void sentCaptchaSignal (MDVerifyCaptcha_200_response summary);
354
+ void verifyCaptchaSignal (MDVerifyCaptcha_200_response summary);
355
355
356
356
void bannerSignalFull (MDHttpRequestWorker *worker, MDBanner_200_response summary);
357
357
void cellphoneLoginSignalFull (MDHttpRequestWorker *worker, MDCellphoneLogin_200_response summary);
@@ -383,8 +383,8 @@ class MDClientApi : public QObject {
383
383
void qrCheckSignalFull (MDHttpRequestWorker *worker, MDQrCheck_200_response summary);
384
384
void qrCreateSignalFull (MDHttpRequestWorker *worker, MDQrCreate_200_response summary);
385
385
void searchSignalFull (MDHttpRequestWorker *worker, MDSearch_200_response summary);
386
- void sendCaptchaSignalFull (MDHttpRequestWorker *worker, MDSendCaptcha_200_response summary);
387
- void verifyCaptchaSignalFull (MDHttpRequestWorker *worker, MDSendCaptcha_200_response summary);
386
+ void sentCaptchaSignalFull (MDHttpRequestWorker *worker, MDVerifyCaptcha_200_response summary);
387
+ void verifyCaptchaSignalFull (MDHttpRequestWorker *worker, MDVerifyCaptcha_200_response summary);
388
388
389
389
void bannerSignalE (MDBanner_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
390
390
void cellphoneLoginSignalE (MDCellphoneLogin_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
@@ -416,8 +416,8 @@ class MDClientApi : public QObject {
416
416
void qrCheckSignalE (MDQrCheck_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
417
417
void qrCreateSignalE (MDQrCreate_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
418
418
void searchSignalE (MDSearch_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
419
- void sendCaptchaSignalE (MDSendCaptcha_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
420
- void verifyCaptchaSignalE (MDSendCaptcha_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
419
+ void sentCaptchaSignalE (MDVerifyCaptcha_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
420
+ void verifyCaptchaSignalE (MDVerifyCaptcha_200_response summary, QNetworkReply::NetworkError error_type, QString error_str);
421
421
422
422
void bannerSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
423
423
void cellphoneLoginSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
@@ -449,7 +449,7 @@ class MDClientApi : public QObject {
449
449
void qrCheckSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
450
450
void qrCreateSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
451
451
void searchSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
452
- void sendCaptchaSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
452
+ void sentCaptchaSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
453
453
void verifyCaptchaSignalEFull (MDHttpRequestWorker *worker, QNetworkReply::NetworkError error_type, QString error_str);
454
454
455
455
void abortRequestsSignal ();
0 commit comments