@gizone/rrs-client 4.2.0-alpha.362 → 4.2.0-alpha.363

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 (41) hide show
  1. package/.openapi-generator/FILES +3 -2
  2. package/apis/message-api.ts +0 -178
  3. package/apis/notification-api.ts +133 -227
  4. package/dist/apis/message-api.d.ts +0 -93
  5. package/dist/apis/message-api.js +0 -139
  6. package/dist/apis/notification-api.d.ts +90 -135
  7. package/dist/apis/notification-api.js +99 -174
  8. package/dist/esm/apis/message-api.d.ts +0 -93
  9. package/dist/esm/apis/message-api.js +1 -140
  10. package/dist/esm/apis/notification-api.d.ts +90 -135
  11. package/dist/esm/apis/notification-api.js +99 -174
  12. package/dist/esm/models/index.d.ts +3 -2
  13. package/dist/esm/models/index.js +3 -2
  14. package/dist/esm/models/json-result-notice-entity.d.ts +62 -0
  15. package/dist/{models/sys-user-msg-notice-add-vo.d.ts → esm/models/notice-add-vo.d.ts} +8 -8
  16. package/dist/esm/models/notice-entity.d.ts +90 -0
  17. package/dist/esm/models/notice-entity.js +14 -0
  18. package/dist/esm/models/work-order-issue-type-settings-add-or-update-vo.d.ts +6 -0
  19. package/dist/esm/models/work-order-issue-type-settings-entity.d.ts +6 -0
  20. package/dist/models/index.d.ts +3 -2
  21. package/dist/models/index.js +3 -2
  22. package/dist/models/json-result-notice-entity.d.ts +62 -0
  23. package/dist/{esm/models/sys-user-msg-notice-add-vo.d.ts → models/notice-add-vo.d.ts} +8 -8
  24. package/dist/models/notice-entity.d.ts +90 -0
  25. package/dist/models/notice-entity.js +15 -0
  26. package/dist/models/work-order-issue-type-settings-add-or-update-vo.d.ts +6 -0
  27. package/dist/models/work-order-issue-type-settings-entity.d.ts +6 -0
  28. package/models/index.ts +3 -2
  29. package/models/json-result-notice-entity.ts +72 -0
  30. package/models/{sys-user-msg-notice-add-vo.ts → notice-add-vo.ts} +8 -8
  31. package/models/notice-entity.ts +96 -0
  32. package/models/work-order-issue-type-settings-add-or-update-vo.ts +6 -0
  33. package/models/work-order-issue-type-settings-entity.ts +6 -0
  34. package/package.json +1 -1
  35. package/dist/esm/models/notice-vo.d.ts +0 -86
  36. package/dist/models/notice-vo.d.ts +0 -86
  37. package/models/notice-vo.ts +0 -90
  38. /package/dist/esm/models/{notice-vo.js → json-result-notice-entity.js} +0 -0
  39. /package/dist/esm/models/{sys-user-msg-notice-add-vo.js → notice-add-vo.js} +0 -0
  40. /package/dist/models/{notice-vo.js → json-result-notice-entity.js} +0 -0
  41. /package/dist/models/{sys-user-msg-notice-add-vo.js → notice-add-vo.js} +0 -0
@@ -12,8 +12,9 @@
12
12
  import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
- import type { JsonResult } from '../models';
16
- import type { NoticeVo } from '../models';
15
+ import type { JsonResultNoticeEntity } from '../models';
16
+ import type { JsonResultVoid } from '../models';
17
+ import type { NoticeAddVo } from '../models';
17
18
  import type { SysNotice } from '../models';
18
19
  import type { TableDataInfo } from '../models';
19
20
  /**
@@ -28,14 +29,6 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
28
29
  * @throws {RequiredError}
29
30
  */
30
31
  createNotification: (sysNotice: SysNotice, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31
- /**
32
- *
33
- * @summary 批量删除/删除
34
- * @param {string} id
35
- * @param {*} [options] Override http request option.
36
- * @throws {RequiredError}
37
- */
38
- delBatchNotice: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39
32
  /**
40
33
  *
41
34
  * @param {Array<number>} noticeIds
@@ -45,42 +38,42 @@ export declare const NotificationApiAxiosParamCreator: (configuration?: Configur
45
38
  deleteManyNotification: (noticeIds: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46
39
  /**
47
40
  *
48
- * @summary 全部标为已读
49
- * @param {number} parkId
41
+ * @param {number} noticeId
50
42
  * @param {*} [options] Override http request option.
51
43
  * @throws {RequiredError}
52
44
  */
53
- editBatchState: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45
+ getNotification: (noticeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54
46
  /**
55
47
  *
56
- * @summary 修改状态
57
- * @param {number} id
48
+ * @param {SysNotice} notice
58
49
  * @param {*} [options] Override http request option.
59
50
  * @throws {RequiredError}
60
51
  */
61
- editStateNotice: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ listNotification: (notice: SysNotice, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62
53
  /**
63
54
  *
64
- * @param {number} noticeId
55
+ * @summary 添加园区公告
56
+ * @param {NoticeAddVo} noticeAddVo
65
57
  * @param {*} [options] Override http request option.
66
58
  * @throws {RequiredError}
67
59
  */
68
- getNotification: (noticeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
60
+ noticeAdd: (noticeAddVo: NoticeAddVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
69
61
  /**
70
62
  *
71
- * @param {SysNotice} notice
63
+ * @summary 删除园区公告
64
+ * @param {number} id
72
65
  * @param {*} [options] Override http request option.
73
66
  * @throws {RequiredError}
74
67
  */
75
- listNotification: (notice: SysNotice, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
68
+ noticeDelete: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76
69
  /**
77
70
  *
78
- * @summary 消息通知列表
79
- * @param {NoticeVo} noticeVo
71
+ * @summary 园区公告详情
72
+ * @param {number} id
80
73
  * @param {*} [options] Override http request option.
81
74
  * @throws {RequiredError}
82
75
  */
83
- noticeList: (noticeVo: NoticeVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76
+ noticeDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84
77
  /**
85
78
  *
86
79
  * @param {SysNotice} sysNotice
@@ -103,14 +96,6 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
103
96
  createNotification(sysNotice: SysNotice, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
104
97
  [key: string]: object;
105
98
  }>>;
106
- /**
107
- *
108
- * @summary 批量删除/删除
109
- * @param {string} id
110
- * @param {*} [options] Override http request option.
111
- * @throws {RequiredError}
112
- */
113
- delBatchNotice(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
114
99
  /**
115
100
  *
116
101
  * @param {Array<number>} noticeIds
@@ -122,44 +107,44 @@ export declare const NotificationApiFp: (configuration?: Configuration) => {
122
107
  }>>;
123
108
  /**
124
109
  *
125
- * @summary 全部标为已读
126
- * @param {number} parkId
110
+ * @param {number} noticeId
127
111
  * @param {*} [options] Override http request option.
128
112
  * @throws {RequiredError}
129
113
  */
130
- editBatchState(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
114
+ getNotification(noticeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
115
+ [key: string]: object;
116
+ }>>;
131
117
  /**
132
118
  *
133
- * @summary 修改状态
134
- * @param {number} id
119
+ * @param {SysNotice} notice
135
120
  * @param {*} [options] Override http request option.
136
121
  * @throws {RequiredError}
137
122
  */
138
- editStateNotice(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
123
+ listNotification(notice: SysNotice, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TableDataInfo>>;
139
124
  /**
140
125
  *
141
- * @param {number} noticeId
126
+ * @summary 添加园区公告
127
+ * @param {NoticeAddVo} noticeAddVo
142
128
  * @param {*} [options] Override http request option.
143
129
  * @throws {RequiredError}
144
130
  */
145
- getNotification(noticeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
146
- [key: string]: object;
147
- }>>;
131
+ noticeAdd(noticeAddVo: NoticeAddVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
148
132
  /**
149
133
  *
150
- * @param {SysNotice} notice
134
+ * @summary 删除园区公告
135
+ * @param {number} id
151
136
  * @param {*} [options] Override http request option.
152
137
  * @throws {RequiredError}
153
138
  */
154
- listNotification(notice: SysNotice, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TableDataInfo>>;
139
+ noticeDelete(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
155
140
  /**
156
141
  *
157
- * @summary 消息通知列表
158
- * @param {NoticeVo} noticeVo
142
+ * @summary 园区公告详情
143
+ * @param {number} id
159
144
  * @param {*} [options] Override http request option.
160
145
  * @throws {RequiredError}
161
146
  */
162
- noticeList(noticeVo: NoticeVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
147
+ noticeDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultNoticeEntity>>;
163
148
  /**
164
149
  *
165
150
  * @param {SysNotice} sysNotice
@@ -184,14 +169,6 @@ export declare const NotificationApiFactory: (configuration?: Configuration, bas
184
169
  createNotification(requestParameters: NotificationApiCreateNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
185
170
  [key: string]: object;
186
171
  }>;
187
- /**
188
- *
189
- * @summary 批量删除/删除
190
- * @param {NotificationApiDelBatchNoticeRequest} requestParameters Request parameters.
191
- * @param {*} [options] Override http request option.
192
- * @throws {RequiredError}
193
- */
194
- delBatchNotice(requestParameters: NotificationApiDelBatchNoticeRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
195
172
  /**
196
173
  *
197
174
  * @param {NotificationApiDeleteManyNotificationRequest} requestParameters Request parameters.
@@ -203,44 +180,44 @@ export declare const NotificationApiFactory: (configuration?: Configuration, bas
203
180
  }>;
204
181
  /**
205
182
  *
206
- * @summary 全部标为已读
207
- * @param {NotificationApiEditBatchStateRequest} requestParameters Request parameters.
183
+ * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters.
208
184
  * @param {*} [options] Override http request option.
209
185
  * @throws {RequiredError}
210
186
  */
211
- editBatchState(requestParameters: NotificationApiEditBatchStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
187
+ getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
188
+ [key: string]: object;
189
+ }>;
212
190
  /**
213
191
  *
214
- * @summary 修改状态
215
- * @param {NotificationApiEditStateNoticeRequest} requestParameters Request parameters.
192
+ * @param {NotificationApiListNotificationRequest} requestParameters Request parameters.
216
193
  * @param {*} [options] Override http request option.
217
194
  * @throws {RequiredError}
218
195
  */
219
- editStateNotice(requestParameters: NotificationApiEditStateNoticeRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
196
+ listNotification(requestParameters: NotificationApiListNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<TableDataInfo>;
220
197
  /**
221
198
  *
222
- * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters.
199
+ * @summary 添加园区公告
200
+ * @param {NotificationApiNoticeAddRequest} requestParameters Request parameters.
223
201
  * @param {*} [options] Override http request option.
224
202
  * @throws {RequiredError}
225
203
  */
226
- getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
227
- [key: string]: object;
228
- }>;
204
+ noticeAdd(requestParameters: NotificationApiNoticeAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
229
205
  /**
230
206
  *
231
- * @param {NotificationApiListNotificationRequest} requestParameters Request parameters.
207
+ * @summary 删除园区公告
208
+ * @param {NotificationApiNoticeDeleteRequest} requestParameters Request parameters.
232
209
  * @param {*} [options] Override http request option.
233
210
  * @throws {RequiredError}
234
211
  */
235
- listNotification(requestParameters: NotificationApiListNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<TableDataInfo>;
212
+ noticeDelete(requestParameters: NotificationApiNoticeDeleteRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
236
213
  /**
237
214
  *
238
- * @summary 消息通知列表
239
- * @param {NotificationApiNoticeListRequest} requestParameters Request parameters.
215
+ * @summary 园区公告详情
216
+ * @param {NotificationApiNoticeDetailsRequest} requestParameters Request parameters.
240
217
  * @param {*} [options] Override http request option.
241
218
  * @throws {RequiredError}
242
219
  */
243
- noticeList(requestParameters: NotificationApiNoticeListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
220
+ noticeDetails(requestParameters: NotificationApiNoticeDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultNoticeEntity>;
244
221
  /**
245
222
  *
246
223
  * @param {NotificationApiUpdateNotificationRequest} requestParameters Request parameters.
@@ -264,19 +241,6 @@ export interface NotificationApiCreateNotificationRequest {
264
241
  */
265
242
  readonly sysNotice: SysNotice;
266
243
  }
267
- /**
268
- * Request parameters for delBatchNotice operation in NotificationApi.
269
- * @export
270
- * @interface NotificationApiDelBatchNoticeRequest
271
- */
272
- export interface NotificationApiDelBatchNoticeRequest {
273
- /**
274
- *
275
- * @type {string}
276
- * @memberof NotificationApiDelBatchNotice
277
- */
278
- readonly id: string;
279
- }
280
244
  /**
281
245
  * Request parameters for deleteManyNotification operation in NotificationApi.
282
246
  * @export
@@ -291,69 +255,69 @@ export interface NotificationApiDeleteManyNotificationRequest {
291
255
  readonly noticeIds: Array<number>;
292
256
  }
293
257
  /**
294
- * Request parameters for editBatchState operation in NotificationApi.
258
+ * Request parameters for getNotification operation in NotificationApi.
295
259
  * @export
296
- * @interface NotificationApiEditBatchStateRequest
260
+ * @interface NotificationApiGetNotificationRequest
297
261
  */
298
- export interface NotificationApiEditBatchStateRequest {
262
+ export interface NotificationApiGetNotificationRequest {
299
263
  /**
300
264
  *
301
265
  * @type {number}
302
- * @memberof NotificationApiEditBatchState
266
+ * @memberof NotificationApiGetNotification
303
267
  */
304
- readonly parkId: number;
268
+ readonly noticeId: number;
305
269
  }
306
270
  /**
307
- * Request parameters for editStateNotice operation in NotificationApi.
271
+ * Request parameters for listNotification operation in NotificationApi.
308
272
  * @export
309
- * @interface NotificationApiEditStateNoticeRequest
273
+ * @interface NotificationApiListNotificationRequest
310
274
  */
311
- export interface NotificationApiEditStateNoticeRequest {
275
+ export interface NotificationApiListNotificationRequest {
312
276
  /**
313
277
  *
314
- * @type {number}
315
- * @memberof NotificationApiEditStateNotice
278
+ * @type {SysNotice}
279
+ * @memberof NotificationApiListNotification
316
280
  */
317
- readonly id: number;
281
+ readonly notice: SysNotice;
318
282
  }
319
283
  /**
320
- * Request parameters for getNotification operation in NotificationApi.
284
+ * Request parameters for noticeAdd operation in NotificationApi.
321
285
  * @export
322
- * @interface NotificationApiGetNotificationRequest
286
+ * @interface NotificationApiNoticeAddRequest
323
287
  */
324
- export interface NotificationApiGetNotificationRequest {
288
+ export interface NotificationApiNoticeAddRequest {
325
289
  /**
326
290
  *
327
- * @type {number}
328
- * @memberof NotificationApiGetNotification
291
+ * @type {NoticeAddVo}
292
+ * @memberof NotificationApiNoticeAdd
329
293
  */
330
- readonly noticeId: number;
294
+ readonly noticeAddVo: NoticeAddVo;
331
295
  }
332
296
  /**
333
- * Request parameters for listNotification operation in NotificationApi.
297
+ * Request parameters for noticeDelete operation in NotificationApi.
334
298
  * @export
335
- * @interface NotificationApiListNotificationRequest
299
+ * @interface NotificationApiNoticeDeleteRequest
336
300
  */
337
- export interface NotificationApiListNotificationRequest {
301
+ export interface NotificationApiNoticeDeleteRequest {
338
302
  /**
339
303
  *
340
- * @type {SysNotice}
341
- * @memberof NotificationApiListNotification
304
+ * @type {number}
305
+ * @memberof NotificationApiNoticeDelete
342
306
  */
343
- readonly notice: SysNotice;
307
+ readonly id: number;
344
308
  }
345
309
  /**
346
- * Request parameters for noticeList operation in NotificationApi.
310
+ * Request parameters for noticeDetails operation in NotificationApi.
347
311
  * @export
348
- * @interface NotificationApiNoticeListRequest
312
+ * @interface NotificationApiNoticeDetailsRequest
349
313
  */
350
- export interface NotificationApiNoticeListRequest {
314
+ export interface NotificationApiNoticeDetailsRequest {
351
315
  /**
352
316
  *
353
- * @type {NoticeVo}
354
- * @memberof NotificationApiNoticeList
317
+ * @type {number}
318
+ * @memberof NotificationApiNoticeDetails
355
319
  */
356
- readonly noticeVo: NoticeVo;
320
+ readonly id: number;
357
321
  }
358
322
  /**
359
323
  * Request parameters for updateNotification operation in NotificationApi.
@@ -385,15 +349,6 @@ export declare class NotificationApi extends BaseAPI {
385
349
  createNotification(requestParameters: NotificationApiCreateNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
386
350
  [key: string]: object;
387
351
  }, any>>;
388
- /**
389
- *
390
- * @summary 批量删除/删除
391
- * @param {NotificationApiDelBatchNoticeRequest} requestParameters Request parameters.
392
- * @param {*} [options] Override http request option.
393
- * @throws {RequiredError}
394
- * @memberof NotificationApi
395
- */
396
- delBatchNotice(requestParameters: NotificationApiDelBatchNoticeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
397
352
  /**
398
353
  *
399
354
  * @param {NotificationApiDeleteManyNotificationRequest} requestParameters Request parameters.
@@ -406,49 +361,49 @@ export declare class NotificationApi extends BaseAPI {
406
361
  }, any>>;
407
362
  /**
408
363
  *
409
- * @summary 全部标为已读
410
- * @param {NotificationApiEditBatchStateRequest} requestParameters Request parameters.
364
+ * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters.
411
365
  * @param {*} [options] Override http request option.
412
366
  * @throws {RequiredError}
413
367
  * @memberof NotificationApi
414
368
  */
415
- editBatchState(requestParameters: NotificationApiEditBatchStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
369
+ getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
370
+ [key: string]: object;
371
+ }, any>>;
416
372
  /**
417
373
  *
418
- * @summary 修改状态
419
- * @param {NotificationApiEditStateNoticeRequest} requestParameters Request parameters.
374
+ * @param {NotificationApiListNotificationRequest} requestParameters Request parameters.
420
375
  * @param {*} [options] Override http request option.
421
376
  * @throws {RequiredError}
422
377
  * @memberof NotificationApi
423
378
  */
424
- editStateNotice(requestParameters: NotificationApiEditStateNoticeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
379
+ listNotification(requestParameters: NotificationApiListNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TableDataInfo, any>>;
425
380
  /**
426
381
  *
427
- * @param {NotificationApiGetNotificationRequest} requestParameters Request parameters.
382
+ * @summary 添加园区公告
383
+ * @param {NotificationApiNoticeAddRequest} requestParameters Request parameters.
428
384
  * @param {*} [options] Override http request option.
429
385
  * @throws {RequiredError}
430
386
  * @memberof NotificationApi
431
387
  */
432
- getNotification(requestParameters: NotificationApiGetNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
433
- [key: string]: object;
434
- }, any>>;
388
+ noticeAdd(requestParameters: NotificationApiNoticeAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
435
389
  /**
436
390
  *
437
- * @param {NotificationApiListNotificationRequest} requestParameters Request parameters.
391
+ * @summary 删除园区公告
392
+ * @param {NotificationApiNoticeDeleteRequest} requestParameters Request parameters.
438
393
  * @param {*} [options] Override http request option.
439
394
  * @throws {RequiredError}
440
395
  * @memberof NotificationApi
441
396
  */
442
- listNotification(requestParameters: NotificationApiListNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TableDataInfo, any>>;
397
+ noticeDelete(requestParameters: NotificationApiNoticeDeleteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
443
398
  /**
444
399
  *
445
- * @summary 消息通知列表
446
- * @param {NotificationApiNoticeListRequest} requestParameters Request parameters.
400
+ * @summary 园区公告详情
401
+ * @param {NotificationApiNoticeDetailsRequest} requestParameters Request parameters.
447
402
  * @param {*} [options] Override http request option.
448
403
  * @throws {RequiredError}
449
404
  * @memberof NotificationApi
450
405
  */
451
- noticeList(requestParameters: NotificationApiNoticeListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
406
+ noticeDetails(requestParameters: NotificationApiNoticeDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultNoticeEntity, any>>;
452
407
  /**
453
408
  *
454
409
  * @param {NotificationApiUpdateNotificationRequest} requestParameters Request parameters.