@gizone/rrs-client 4.1.3-beta.232 → 4.2.0-alpha.234

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/README.md +2 -2
  3. package/api.ts +1 -0
  4. package/apis/hwork-api.ts +167 -0
  5. package/apis/message-api.ts +31 -5
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/apis/hwork-api.d.ts +96 -0
  10. package/dist/apis/hwork-api.js +145 -0
  11. package/dist/apis/message-api.d.ts +18 -2
  12. package/dist/apis/message-api.js +15 -5
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +1 -0
  15. package/dist/esm/api.js +1 -0
  16. package/dist/esm/apis/hwork-api.d.ts +96 -0
  17. package/dist/esm/apis/hwork-api.js +138 -0
  18. package/dist/esm/apis/message-api.d.ts +18 -2
  19. package/dist/esm/apis/message-api.js +15 -5
  20. package/dist/esm/configuration.js +1 -1
  21. package/dist/esm/models/get-user-wx200-response.d.ts +18 -18
  22. package/dist/esm/models/index.d.ts +1 -0
  23. package/dist/esm/models/index.js +1 -0
  24. package/dist/esm/models/ipage-access-vo.d.ts +8 -8
  25. package/dist/esm/models/login-type-enum.d.ts +2 -0
  26. package/dist/esm/models/login-type-enum.js +3 -1
  27. package/dist/esm/models/sys-user-attachment-info.d.ts +42 -0
  28. package/dist/esm/models/sys-user-attachment-info.js +14 -0
  29. package/dist/esm/models/sys-user.d.ts +13 -0
  30. package/dist/models/get-user-wx200-response.d.ts +18 -18
  31. package/dist/models/index.d.ts +1 -0
  32. package/dist/models/index.js +1 -0
  33. package/dist/models/ipage-access-vo.d.ts +8 -8
  34. package/dist/models/login-type-enum.d.ts +2 -0
  35. package/dist/models/login-type-enum.js +3 -1
  36. package/dist/models/sys-user-attachment-info.d.ts +42 -0
  37. package/dist/models/sys-user-attachment-info.js +15 -0
  38. package/dist/models/sys-user.d.ts +13 -0
  39. package/models/get-user-wx200-response.ts +18 -18
  40. package/models/index.ts +1 -0
  41. package/models/ipage-access-vo.ts +8 -8
  42. package/models/login-type-enum.ts +3 -1
  43. package/models/sys-user-attachment-info.ts +48 -0
  44. package/models/sys-user.ts +15 -0
  45. package/package.json +1 -1
@@ -215,10 +215,12 @@ const MessageApiAxiosParamCreator = function (configuration) {
215
215
  * @param {number} parkId 园区id
216
216
  * @param {string} [date] 时间 年月日
217
217
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
218
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
219
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
218
220
  * @param {*} [options] Override http request option.
219
221
  * @throws {RequiredError}
220
222
  */
221
- systemSelectList: (page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, ...args_1) => __awaiter(this, [page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, ...args_1], void 0, function* (page, pageSize, userId, parkId, date, type, options = {}) {
223
+ systemSelectList: (page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, startTime_1, endTime_1, ...args_1) => __awaiter(this, [page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, startTime_1, endTime_1, ...args_1], void 0, function* (page, pageSize, userId, parkId, date, type, startTime, endTime, options = {}) {
222
224
  // verify required parameter 'page' is not null or undefined
223
225
  (0, common_1.assertParamExists)('systemSelectList', 'page', page);
224
226
  // verify required parameter 'pageSize' is not null or undefined
@@ -258,6 +260,12 @@ const MessageApiAxiosParamCreator = function (configuration) {
258
260
  if (parkId !== undefined) {
259
261
  localVarQueryParameter['parkId'] = parkId;
260
262
  }
263
+ if (startTime !== undefined) {
264
+ localVarQueryParameter['startTime'] = startTime;
265
+ }
266
+ if (endTime !== undefined) {
267
+ localVarQueryParameter['endTime'] = endTime;
268
+ }
261
269
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
262
270
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
263
271
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -397,13 +405,15 @@ const MessageApiFp = function (configuration) {
397
405
  * @param {number} parkId 园区id
398
406
  * @param {string} [date] 时间 年月日
399
407
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
408
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
409
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
400
410
  * @param {*} [options] Override http request option.
401
411
  * @throws {RequiredError}
402
412
  */
403
- systemSelectList(page, pageSize, userId, parkId, date, type, options) {
413
+ systemSelectList(page, pageSize, userId, parkId, date, type, startTime, endTime, options) {
404
414
  return __awaiter(this, void 0, void 0, function* () {
405
415
  var _a, _b, _c;
406
- const localVarAxiosArgs = yield localVarAxiosParamCreator.systemSelectList(page, pageSize, userId, parkId, date, type, options);
416
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.systemSelectList(page, pageSize, userId, parkId, date, type, startTime, endTime, options);
407
417
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
408
418
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MessageApi.systemSelectList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
409
419
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -493,7 +503,7 @@ const MessageApiFactory = function (configuration, basePath, axios) {
493
503
  * @throws {RequiredError}
494
504
  */
495
505
  systemSelectList(requestParameters, options) {
496
- return localVarFp.systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, options).then((request) => request(axios, basePath));
506
+ return localVarFp.systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(axios, basePath));
497
507
  },
498
508
  /**
499
509
  *
@@ -579,7 +589,7 @@ class MessageApi extends base_1.BaseAPI {
579
589
  * @memberof MessageApi
580
590
  */
581
591
  systemSelectList(requestParameters, options) {
582
- return (0, exports.MessageApiFp)(this.configuration).systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, options).then((request) => request(this.axios, this.basePath));
592
+ return (0, exports.MessageApiFp)(this.configuration).systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(this.axios, this.basePath));
583
593
  }
584
594
  /**
585
595
  *
@@ -23,7 +23,7 @@ class Configuration {
23
23
  this.accessToken = param.accessToken;
24
24
  this.basePath = param.basePath;
25
25
  this.serverIndex = param.serverIndex;
26
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.1.3/typescript-axios" }) }, param.baseOptions);
26
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.2.0/typescript-axios" }) }, param.baseOptions);
27
27
  this.formDataCtor = param.formDataCtor;
28
28
  }
29
29
  /**
package/dist/esm/api.d.ts CHANGED
@@ -31,6 +31,7 @@ export * from './apis/excel-language-controller-api';
31
31
  export * from './apis/feedback-api';
32
32
  export * from './apis/file-api';
33
33
  export * from './apis/fire-safety-api';
34
+ export * from './apis/hwork-api';
34
35
  export * from './apis/inspection-standard-api';
35
36
  export * from './apis/internal-api';
36
37
  export * from './apis/inventory-api';
package/dist/esm/api.js CHANGED
@@ -33,6 +33,7 @@ export * from './apis/excel-language-controller-api';
33
33
  export * from './apis/feedback-api';
34
34
  export * from './apis/file-api';
35
35
  export * from './apis/fire-safety-api';
36
+ export * from './apis/hwork-api';
36
37
  export * from './apis/inspection-standard-api';
37
38
  export * from './apis/internal-api';
38
39
  export * from './apis/inventory-api';
@@ -0,0 +1,96 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from '../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import { type RequestArgs, BaseAPI } from '../base';
15
+ import type { JsonResult } from '../models';
16
+ import type { LoginTypeEnum } from '../models';
17
+ /**
18
+ * HWorkApi - axios parameter creator
19
+ * @export
20
+ */
21
+ export declare const HWorkApiAxiosParamCreator: (configuration?: Configuration) => {
22
+ /**
23
+ *
24
+ * @summary 获取用户的某一个园区
25
+ * @param {LoginTypeEnum} loginType
26
+ * @param {number} [groupId]
27
+ * @param {*} [options] Override http request option.
28
+ * @throws {RequiredError}
29
+ */
30
+ getOnePark: (loginType: LoginTypeEnum, groupId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31
+ };
32
+ /**
33
+ * HWorkApi - functional programming interface
34
+ * @export
35
+ */
36
+ export declare const HWorkApiFp: (configuration?: Configuration) => {
37
+ /**
38
+ *
39
+ * @summary 获取用户的某一个园区
40
+ * @param {LoginTypeEnum} loginType
41
+ * @param {number} [groupId]
42
+ * @param {*} [options] Override http request option.
43
+ * @throws {RequiredError}
44
+ */
45
+ getOnePark(loginType: LoginTypeEnum, groupId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
46
+ };
47
+ /**
48
+ * HWorkApi - factory interface
49
+ * @export
50
+ */
51
+ export declare const HWorkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
52
+ /**
53
+ *
54
+ * @summary 获取用户的某一个园区
55
+ * @param {HWorkApiGetOneParkRequest} requestParameters Request parameters.
56
+ * @param {*} [options] Override http request option.
57
+ * @throws {RequiredError}
58
+ */
59
+ getOnePark(requestParameters: HWorkApiGetOneParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
60
+ };
61
+ /**
62
+ * Request parameters for getOnePark operation in HWorkApi.
63
+ * @export
64
+ * @interface HWorkApiGetOneParkRequest
65
+ */
66
+ export interface HWorkApiGetOneParkRequest {
67
+ /**
68
+ *
69
+ * @type {LoginTypeEnum}
70
+ * @memberof HWorkApiGetOnePark
71
+ */
72
+ readonly loginType: LoginTypeEnum;
73
+ /**
74
+ *
75
+ * @type {number}
76
+ * @memberof HWorkApiGetOnePark
77
+ */
78
+ readonly groupId?: number;
79
+ }
80
+ /**
81
+ * HWorkApi - object-oriented interface
82
+ * @export
83
+ * @class HWorkApi
84
+ * @extends {BaseAPI}
85
+ */
86
+ export declare class HWorkApi extends BaseAPI {
87
+ /**
88
+ *
89
+ * @summary 获取用户的某一个园区
90
+ * @param {HWorkApiGetOneParkRequest} requestParameters Request parameters.
91
+ * @param {*} [options] Override http request option.
92
+ * @throws {RequiredError}
93
+ * @memberof HWorkApi
94
+ */
95
+ getOnePark(requestParameters: HWorkApiGetOneParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
96
+ }
@@ -0,0 +1,138 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
15
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
16
+ return new (P || (P = Promise))(function (resolve, reject) {
17
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
20
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
21
+ });
22
+ };
23
+ import globalAxios from 'axios';
24
+ // Some imports not used depending on template conditions
25
+ // @ts-ignore
26
+ import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setSearchParams, toPathString, createRequestFunction } from '../common';
27
+ // @ts-ignore
28
+ import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
29
+ /**
30
+ * HWorkApi - axios parameter creator
31
+ * @export
32
+ */
33
+ export const HWorkApiAxiosParamCreator = function (configuration) {
34
+ return {
35
+ /**
36
+ *
37
+ * @summary 获取用户的某一个园区
38
+ * @param {LoginTypeEnum} loginType
39
+ * @param {number} [groupId]
40
+ * @param {*} [options] Override http request option.
41
+ * @throws {RequiredError}
42
+ */
43
+ getOnePark: (loginType_1, groupId_1, ...args_1) => __awaiter(this, [loginType_1, groupId_1, ...args_1], void 0, function* (loginType, groupId, options = {}) {
44
+ // verify required parameter 'loginType' is not null or undefined
45
+ assertParamExists('getOnePark', 'loginType', loginType);
46
+ const localVarPath = `/haier/hwork/getOnePark`;
47
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
48
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
49
+ let baseOptions;
50
+ if (configuration) {
51
+ baseOptions = configuration.baseOptions;
52
+ }
53
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
54
+ const localVarHeaderParameter = {};
55
+ const localVarQueryParameter = {};
56
+ // authentication tokenScheme required
57
+ // http bearer authentication required
58
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
59
+ if (groupId !== undefined) {
60
+ localVarQueryParameter['groupId'] = groupId;
61
+ }
62
+ if (loginType !== undefined) {
63
+ localVarQueryParameter['loginType'] = loginType;
64
+ }
65
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
66
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
67
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
68
+ return {
69
+ url: toPathString(localVarUrlObj),
70
+ options: localVarRequestOptions,
71
+ };
72
+ }),
73
+ };
74
+ };
75
+ /**
76
+ * HWorkApi - functional programming interface
77
+ * @export
78
+ */
79
+ export const HWorkApiFp = function (configuration) {
80
+ const localVarAxiosParamCreator = HWorkApiAxiosParamCreator(configuration);
81
+ return {
82
+ /**
83
+ *
84
+ * @summary 获取用户的某一个园区
85
+ * @param {LoginTypeEnum} loginType
86
+ * @param {number} [groupId]
87
+ * @param {*} [options] Override http request option.
88
+ * @throws {RequiredError}
89
+ */
90
+ getOnePark(loginType, groupId, options) {
91
+ return __awaiter(this, void 0, void 0, function* () {
92
+ var _a, _b, _c;
93
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getOnePark(loginType, groupId, options);
94
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
95
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['HWorkApi.getOnePark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
96
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
97
+ });
98
+ },
99
+ };
100
+ };
101
+ /**
102
+ * HWorkApi - factory interface
103
+ * @export
104
+ */
105
+ export const HWorkApiFactory = function (configuration, basePath, axios) {
106
+ const localVarFp = HWorkApiFp(configuration);
107
+ return {
108
+ /**
109
+ *
110
+ * @summary 获取用户的某一个园区
111
+ * @param {HWorkApiGetOneParkRequest} requestParameters Request parameters.
112
+ * @param {*} [options] Override http request option.
113
+ * @throws {RequiredError}
114
+ */
115
+ getOnePark(requestParameters, options) {
116
+ return localVarFp.getOnePark(requestParameters.loginType, requestParameters.groupId, options).then((request) => request(axios, basePath));
117
+ },
118
+ };
119
+ };
120
+ /**
121
+ * HWorkApi - object-oriented interface
122
+ * @export
123
+ * @class HWorkApi
124
+ * @extends {BaseAPI}
125
+ */
126
+ export class HWorkApi extends BaseAPI {
127
+ /**
128
+ *
129
+ * @summary 获取用户的某一个园区
130
+ * @param {HWorkApiGetOneParkRequest} requestParameters Request parameters.
131
+ * @param {*} [options] Override http request option.
132
+ * @throws {RequiredError}
133
+ * @memberof HWorkApi
134
+ */
135
+ getOnePark(requestParameters, options) {
136
+ return HWorkApiFp(this.configuration).getOnePark(requestParameters.loginType, requestParameters.groupId, options).then((request) => request(this.axios, this.basePath));
137
+ }
138
+ }
@@ -73,10 +73,12 @@ export declare const MessageApiAxiosParamCreator: (configuration?: Configuration
73
73
  * @param {number} parkId 园区id
74
74
  * @param {string} [date] 时间 年月日
75
75
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
76
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
77
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
76
78
  * @param {*} [options] Override http request option.
77
79
  * @throws {RequiredError}
78
80
  */
79
- systemSelectList: (page: number, pageSize: number, userId: number, parkId: number, date?: string, type?: SystemUserMsgTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81
+ systemSelectList: (page: number, pageSize: number, userId: number, parkId: number, date?: string, type?: SystemUserMsgTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80
82
  /**
81
83
  *
82
84
  * @summary 查询用户系统消息详情
@@ -140,10 +142,12 @@ export declare const MessageApiFp: (configuration?: Configuration) => {
140
142
  * @param {number} parkId 园区id
141
143
  * @param {string} [date] 时间 年月日
142
144
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
145
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
146
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
143
147
  * @param {*} [options] Override http request option.
144
148
  * @throws {RequiredError}
145
149
  */
146
- systemSelectList(page: number, pageSize: number, userId: number, parkId: number, date?: string, type?: SystemUserMsgTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSysUserMsgDTO>>;
150
+ systemSelectList(page: number, pageSize: number, userId: number, parkId: number, date?: string, type?: SystemUserMsgTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSysUserMsgDTO>>;
147
151
  /**
148
152
  *
149
153
  * @summary 查询用户系统消息详情
@@ -322,6 +326,18 @@ export interface MessageApiSystemSelectListRequest {
322
326
  * @memberof MessageApiSystemSelectList
323
327
  */
324
328
  readonly type?: SystemUserMsgTypeEnum;
329
+ /**
330
+ * 开始时间 格式:yyyy-MM-dd HH:mm:ss
331
+ * @type {string}
332
+ * @memberof MessageApiSystemSelectList
333
+ */
334
+ readonly startTime?: string;
335
+ /**
336
+ * 结束时间 格式:yyyy-MM-dd HH:mm:ss
337
+ * @type {string}
338
+ * @memberof MessageApiSystemSelectList
339
+ */
340
+ readonly endTime?: string;
325
341
  }
326
342
  /**
327
343
  * Request parameters for systemUserMsgDetails operation in MessageApi.
@@ -212,10 +212,12 @@ export const MessageApiAxiosParamCreator = function (configuration) {
212
212
  * @param {number} parkId 园区id
213
213
  * @param {string} [date] 时间 年月日
214
214
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
215
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
216
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
215
217
  * @param {*} [options] Override http request option.
216
218
  * @throws {RequiredError}
217
219
  */
218
- systemSelectList: (page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, ...args_1) => __awaiter(this, [page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, ...args_1], void 0, function* (page, pageSize, userId, parkId, date, type, options = {}) {
220
+ systemSelectList: (page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, startTime_1, endTime_1, ...args_1) => __awaiter(this, [page_1, pageSize_1, userId_1, parkId_1, date_1, type_1, startTime_1, endTime_1, ...args_1], void 0, function* (page, pageSize, userId, parkId, date, type, startTime, endTime, options = {}) {
219
221
  // verify required parameter 'page' is not null or undefined
220
222
  assertParamExists('systemSelectList', 'page', page);
221
223
  // verify required parameter 'pageSize' is not null or undefined
@@ -255,6 +257,12 @@ export const MessageApiAxiosParamCreator = function (configuration) {
255
257
  if (parkId !== undefined) {
256
258
  localVarQueryParameter['parkId'] = parkId;
257
259
  }
260
+ if (startTime !== undefined) {
261
+ localVarQueryParameter['startTime'] = startTime;
262
+ }
263
+ if (endTime !== undefined) {
264
+ localVarQueryParameter['endTime'] = endTime;
265
+ }
258
266
  setSearchParams(localVarUrlObj, localVarQueryParameter);
259
267
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
260
268
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -393,13 +401,15 @@ export const MessageApiFp = function (configuration) {
393
401
  * @param {number} parkId 园区id
394
402
  * @param {string} [date] 时间 年月日
395
403
  * @param {SystemUserMsgTypeEnum} [type] 消息类型
404
+ * @param {string} [startTime] 开始时间 格式:yyyy-MM-dd HH:mm:ss
405
+ * @param {string} [endTime] 结束时间 格式:yyyy-MM-dd HH:mm:ss
396
406
  * @param {*} [options] Override http request option.
397
407
  * @throws {RequiredError}
398
408
  */
399
- systemSelectList(page, pageSize, userId, parkId, date, type, options) {
409
+ systemSelectList(page, pageSize, userId, parkId, date, type, startTime, endTime, options) {
400
410
  return __awaiter(this, void 0, void 0, function* () {
401
411
  var _a, _b, _c;
402
- const localVarAxiosArgs = yield localVarAxiosParamCreator.systemSelectList(page, pageSize, userId, parkId, date, type, options);
412
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.systemSelectList(page, pageSize, userId, parkId, date, type, startTime, endTime, options);
403
413
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
404
414
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MessageApi.systemSelectList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
405
415
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -488,7 +498,7 @@ export const MessageApiFactory = function (configuration, basePath, axios) {
488
498
  * @throws {RequiredError}
489
499
  */
490
500
  systemSelectList(requestParameters, options) {
491
- return localVarFp.systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, options).then((request) => request(axios, basePath));
501
+ return localVarFp.systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(axios, basePath));
492
502
  },
493
503
  /**
494
504
  *
@@ -573,7 +583,7 @@ export class MessageApi extends BaseAPI {
573
583
  * @memberof MessageApi
574
584
  */
575
585
  systemSelectList(requestParameters, options) {
576
- return MessageApiFp(this.configuration).systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, options).then((request) => request(this.axios, this.basePath));
586
+ return MessageApiFp(this.configuration).systemSelectList(requestParameters.page, requestParameters.pageSize, requestParameters.userId, requestParameters.parkId, requestParameters.date, requestParameters.type, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(this.axios, this.basePath));
577
587
  }
578
588
  /**
579
589
  *
@@ -20,7 +20,7 @@ export class Configuration {
20
20
  this.accessToken = param.accessToken;
21
21
  this.basePath = param.basePath;
22
22
  this.serverIndex = param.serverIndex;
23
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.1.3/typescript-axios" }) }, param.baseOptions);
23
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/4.2.0/typescript-axios" }) }, param.baseOptions);
24
24
  this.formDataCtor = param.formDataCtor;
25
25
  }
26
26
  /**
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -37,40 +37,34 @@ export interface GetUserWx200Response {
37
37
  'trailerFields'?: object;
38
38
  /**
39
39
  *
40
- * @type {string}
40
+ * @type {GetUserWx200ResponseLocale}
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
- 'contentType'?: string;
43
+ 'locale'?: GetUserWx200ResponseLocale;
44
44
  /**
45
45
  *
46
46
  * @type {number}
47
47
  * @memberof GetUserWx200Response
48
48
  */
49
- 'contentLength'?: number;
49
+ 'bufferSize'?: number;
50
50
  /**
51
51
  *
52
- * @type {GetUserWx200ResponseOutputStream}
52
+ * @type {string}
53
53
  * @memberof GetUserWx200Response
54
54
  */
55
- 'outputStream'?: GetUserWx200ResponseOutputStream;
55
+ 'contentType'?: string;
56
56
  /**
57
57
  *
58
58
  * @type {number}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'bufferSize'?: number;
62
- /**
63
- *
64
- * @type {GetUserWx200ResponseLocale}
65
- * @memberof GetUserWx200Response
66
- */
67
- 'locale'?: GetUserWx200ResponseLocale;
61
+ 'contentLength'?: number;
68
62
  /**
69
63
  *
70
- * @type {string}
64
+ * @type {GetUserWx200ResponseOutputStream}
71
65
  * @memberof GetUserWx200Response
72
66
  */
73
- 'characterEncoding'?: string;
67
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
74
68
  /**
75
69
  *
76
70
  * @type {number}
@@ -83,6 +77,12 @@ export interface GetUserWx200Response {
83
77
  * @memberof GetUserWx200Response
84
78
  */
85
79
  'committed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof GetUserWx200Response
84
+ */
85
+ 'characterEncoding'?: string;
86
86
  /**
87
87
  *
88
88
  * @type {object}
@@ -827,6 +827,7 @@ export * from './sys-oper-log';
827
827
  export * from './sys-post';
828
828
  export * from './sys-role';
829
829
  export * from './sys-user';
830
+ export * from './sys-user-attachment-info';
830
831
  export * from './sys-user-drop-down-box-list-dto';
831
832
  export * from './sys-user-info-dto';
832
833
  export * from './sys-user-msg-dto';
@@ -827,6 +827,7 @@ export * from './sys-oper-log';
827
827
  export * from './sys-post';
828
828
  export * from './sys-role';
829
829
  export * from './sys-user';
830
+ export * from './sys-user-attachment-info';
830
831
  export * from './sys-user-drop-down-box-list-dto';
831
832
  export * from './sys-user-info-dto';
832
833
  export * from './sys-user-msg-dto';
@@ -27,26 +27,26 @@ export interface IPageAccessVO {
27
27
  * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'current'?: number;
30
+ 'pages'?: number;
31
31
  /**
32
32
  *
33
- * @type {Array<AccessVO>}
33
+ * @type {boolean}
34
34
  * @memberof IPageAccessVO
35
+ * @deprecated
35
36
  */
36
- 'records'?: Array<AccessVO>;
37
+ 'hitCount'?: boolean;
37
38
  /**
38
39
  *
39
- * @type {number}
40
+ * @type {Array<AccessVO>}
40
41
  * @memberof IPageAccessVO
41
42
  */
42
- 'pages'?: number;
43
+ 'records'?: Array<AccessVO>;
43
44
  /**
44
45
  *
45
- * @type {boolean}
46
+ * @type {number}
46
47
  * @memberof IPageAccessVO
47
- * @deprecated
48
48
  */
49
- 'hitCount'?: boolean;
49
+ 'current'?: number;
50
50
  /**
51
51
  *
52
52
  * @type {boolean}
@@ -19,5 +19,7 @@ export declare const LoginTypeEnum: {
19
19
  readonly Applet: "APPLET";
20
20
  readonly App: "APP";
21
21
  readonly H5: "H5";
22
+ readonly HWorkPc: "H_WORK_PC";
23
+ readonly HWorkApp: "H_WORK_APP";
22
24
  };
23
25
  export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
@@ -20,5 +20,7 @@ export const LoginTypeEnum = {
20
20
  Pc: 'PC',
21
21
  Applet: 'APPLET',
22
22
  App: 'APP',
23
- H5: 'H5'
23
+ H5: 'H5',
24
+ HWorkPc: 'H_WORK_PC',
25
+ HWorkApp: 'H_WORK_APP'
24
26
  };
@@ -0,0 +1,42 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 用户附件信息
14
+ * @export
15
+ * @interface SysUserAttachmentInfo
16
+ */
17
+ export interface SysUserAttachmentInfo {
18
+ /**
19
+ * 附件名称
20
+ * @type {string}
21
+ * @memberof SysUserAttachmentInfo
22
+ */
23
+ 'fileName'?: string;
24
+ /**
25
+ * 附件路径
26
+ * @type {string}
27
+ * @memberof SysUserAttachmentInfo
28
+ */
29
+ 'filePath'?: string;
30
+ /**
31
+ * 开始时间
32
+ * @type {string}
33
+ * @memberof SysUserAttachmentInfo
34
+ */
35
+ 'startTime'?: string;
36
+ /**
37
+ * 结束时间
38
+ * @type {string}
39
+ * @memberof SysUserAttachmentInfo
40
+ */
41
+ 'endTime'?: string;
42
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};