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

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
@@ -10,27 +10,27 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 添加公告入参
13
+ * 园区公告新增参数
14
14
  * @export
15
- * @interface SysUserMsgNoticeAddVO
15
+ * @interface NoticeAddVo
16
16
  */
17
- export interface SysUserMsgNoticeAddVO {
17
+ export interface NoticeAddVo {
18
18
  /**
19
19
  * 园区ID
20
20
  * @type {number}
21
- * @memberof SysUserMsgNoticeAddVO
21
+ * @memberof NoticeAddVo
22
22
  */
23
23
  'parkId': number;
24
24
  /**
25
25
  * 标题
26
26
  * @type {string}
27
- * @memberof SysUserMsgNoticeAddVO
27
+ * @memberof NoticeAddVo
28
28
  */
29
29
  'title': string;
30
30
  /**
31
- * 消息
31
+ * 内容
32
32
  * @type {string}
33
- * @memberof SysUserMsgNoticeAddVO
33
+ * @memberof NoticeAddVo
34
34
  */
35
- 'msg': string;
35
+ 'content': string;
36
36
  }
@@ -0,0 +1,90 @@
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 NoticeEntity
16
+ */
17
+ export interface NoticeEntity {
18
+ /**
19
+ * Id
20
+ * @type {number}
21
+ * @memberof NoticeEntity
22
+ */
23
+ 'id'?: number;
24
+ /**
25
+ * 标题
26
+ * @type {string}
27
+ * @memberof NoticeEntity
28
+ */
29
+ 'title'?: string;
30
+ /**
31
+ * 内容
32
+ * @type {string}
33
+ * @memberof NoticeEntity
34
+ */
35
+ 'content'?: string;
36
+ /**
37
+ * 发布人id
38
+ * @type {number}
39
+ * @memberof NoticeEntity
40
+ */
41
+ 'publisherUserId'?: number;
42
+ /**
43
+ * 发布人名称
44
+ * @type {string}
45
+ * @memberof NoticeEntity
46
+ */
47
+ 'publisherName'?: string;
48
+ /**
49
+ * 发布时间
50
+ * @type {string}
51
+ * @memberof NoticeEntity
52
+ */
53
+ 'publisherTime'?: string;
54
+ /**
55
+ * 园区Id
56
+ * @type {number}
57
+ * @memberof NoticeEntity
58
+ */
59
+ 'parkId'?: number;
60
+ /**
61
+ * 来源 1:园区发布 2:保险生成
62
+ * @type {number}
63
+ * @memberof NoticeEntity
64
+ */
65
+ 'source'?: number;
66
+ /**
67
+ * 来源ID
68
+ * @type {string}
69
+ * @memberof NoticeEntity
70
+ */
71
+ 'sourceId'?: string;
72
+ /**
73
+ * 创建时间
74
+ * @type {string}
75
+ * @memberof NoticeEntity
76
+ */
77
+ 'createTime'?: string;
78
+ /**
79
+ * 更新时间
80
+ * @type {string}
81
+ * @memberof NoticeEntity
82
+ */
83
+ 'updateTime'?: string;
84
+ /**
85
+ * 是否删除 0删除 1未删除
86
+ * @type {number}
87
+ * @memberof NoticeEntity
88
+ */
89
+ 'isDelete'?: number;
90
+ }
@@ -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 {};
@@ -17,6 +17,12 @@ import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
17
  * @interface WorkOrderIssueTypeSettingsAddOrUpdateVo
18
18
  */
19
19
  export interface WorkOrderIssueTypeSettingsAddOrUpdateVo {
20
+ /**
21
+ * id
22
+ * @type {number}
23
+ * @memberof WorkOrderIssueTypeSettingsAddOrUpdateVo
24
+ */
25
+ 'id'?: number;
20
26
  /**
21
27
  *
22
28
  * @type {WorkOrderTypeEnum}
@@ -17,6 +17,12 @@ import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
17
  * @interface WorkOrderIssueTypeSettingsEntity
18
18
  */
19
19
  export interface WorkOrderIssueTypeSettingsEntity {
20
+ /**
21
+ *
22
+ * @type {number}
23
+ * @memberof WorkOrderIssueTypeSettingsEntity
24
+ */
25
+ 'id'?: number;
20
26
  /**
21
27
  * 园区id
22
28
  * @type {number}
@@ -207,6 +207,7 @@ export * from './json-result-list-work-order-step-by-step-push-user-details-dto'
207
207
  export * from './json-result-maintenance-standard-entity';
208
208
  export * from './json-result-monitoring-coverage-alert-work-order-details-dto';
209
209
  export * from './json-result-network-monitor-repair-details-dto';
210
+ export * from './json-result-notice-entity';
210
211
  export * from './json-result-offline-alert-work-order-details-dto';
211
212
  export * from './json-result-page-dto-access-appointment-record-details-dto';
212
213
  export * from './json-result-page-dto-access-blacklist-details-dto';
@@ -267,7 +268,8 @@ export * from './network-monitor-repair-details-dto';
267
268
  export * from './network-repair-info';
268
269
  export * from './news-in-button';
269
270
  export * from './news-info';
270
- export * from './notice-vo';
271
+ export * from './notice-add-vo';
272
+ export * from './notice-entity';
271
273
  export * from './offline-alert-device-vo';
272
274
  export * from './offline-alert-submit-vo';
273
275
  export * from './offline-alert-work-order-details-dto';
@@ -396,7 +398,6 @@ export * from './sys-user-attachment-info';
396
398
  export * from './sys-user-drop-down-box-list-dto';
397
399
  export * from './sys-user-info-dto';
398
400
  export * from './sys-user-msg-dto';
399
- export * from './sys-user-msg-notice-add-vo';
400
401
  export * from './sys-user-role';
401
402
  export * from './system-user-msg-source-type-enum';
402
403
  export * from './system-user-msg-type-enum';
@@ -223,6 +223,7 @@ __exportStar(require("./json-result-list-work-order-step-by-step-push-user-detai
223
223
  __exportStar(require("./json-result-maintenance-standard-entity"), exports);
224
224
  __exportStar(require("./json-result-monitoring-coverage-alert-work-order-details-dto"), exports);
225
225
  __exportStar(require("./json-result-network-monitor-repair-details-dto"), exports);
226
+ __exportStar(require("./json-result-notice-entity"), exports);
226
227
  __exportStar(require("./json-result-offline-alert-work-order-details-dto"), exports);
227
228
  __exportStar(require("./json-result-page-dto-access-appointment-record-details-dto"), exports);
228
229
  __exportStar(require("./json-result-page-dto-access-blacklist-details-dto"), exports);
@@ -283,7 +284,8 @@ __exportStar(require("./network-monitor-repair-details-dto"), exports);
283
284
  __exportStar(require("./network-repair-info"), exports);
284
285
  __exportStar(require("./news-in-button"), exports);
285
286
  __exportStar(require("./news-info"), exports);
286
- __exportStar(require("./notice-vo"), exports);
287
+ __exportStar(require("./notice-add-vo"), exports);
288
+ __exportStar(require("./notice-entity"), exports);
287
289
  __exportStar(require("./offline-alert-device-vo"), exports);
288
290
  __exportStar(require("./offline-alert-submit-vo"), exports);
289
291
  __exportStar(require("./offline-alert-work-order-details-dto"), exports);
@@ -412,7 +414,6 @@ __exportStar(require("./sys-user-attachment-info"), exports);
412
414
  __exportStar(require("./sys-user-drop-down-box-list-dto"), exports);
413
415
  __exportStar(require("./sys-user-info-dto"), exports);
414
416
  __exportStar(require("./sys-user-msg-dto"), exports);
415
- __exportStar(require("./sys-user-msg-notice-add-vo"), exports);
416
417
  __exportStar(require("./sys-user-role"), exports);
417
418
  __exportStar(require("./system-user-msg-source-type-enum"), exports);
418
419
  __exportStar(require("./system-user-msg-type-enum"), exports);
@@ -0,0 +1,62 @@
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 { BaseErrorResult } from './base-error-result';
13
+ import type { NoticeEntity } from './notice-entity';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultNoticeEntity
18
+ */
19
+ export interface JsonResultNoticeEntity {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultNoticeEntity
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultNoticeEntity
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultNoticeEntity
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {NoticeEntity}
41
+ * @memberof JsonResultNoticeEntity
42
+ */
43
+ 'data'?: NoticeEntity | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultNoticeEntity
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultNoticeEntity
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultNoticeEntity
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -10,27 +10,27 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 添加公告入参
13
+ * 园区公告新增参数
14
14
  * @export
15
- * @interface SysUserMsgNoticeAddVO
15
+ * @interface NoticeAddVo
16
16
  */
17
- export interface SysUserMsgNoticeAddVO {
17
+ export interface NoticeAddVo {
18
18
  /**
19
19
  * 园区ID
20
20
  * @type {number}
21
- * @memberof SysUserMsgNoticeAddVO
21
+ * @memberof NoticeAddVo
22
22
  */
23
23
  'parkId': number;
24
24
  /**
25
25
  * 标题
26
26
  * @type {string}
27
- * @memberof SysUserMsgNoticeAddVO
27
+ * @memberof NoticeAddVo
28
28
  */
29
29
  'title': string;
30
30
  /**
31
- * 消息
31
+ * 内容
32
32
  * @type {string}
33
- * @memberof SysUserMsgNoticeAddVO
33
+ * @memberof NoticeAddVo
34
34
  */
35
- 'msg': string;
35
+ 'content': string;
36
36
  }
@@ -0,0 +1,90 @@
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 NoticeEntity
16
+ */
17
+ export interface NoticeEntity {
18
+ /**
19
+ * Id
20
+ * @type {number}
21
+ * @memberof NoticeEntity
22
+ */
23
+ 'id'?: number;
24
+ /**
25
+ * 标题
26
+ * @type {string}
27
+ * @memberof NoticeEntity
28
+ */
29
+ 'title'?: string;
30
+ /**
31
+ * 内容
32
+ * @type {string}
33
+ * @memberof NoticeEntity
34
+ */
35
+ 'content'?: string;
36
+ /**
37
+ * 发布人id
38
+ * @type {number}
39
+ * @memberof NoticeEntity
40
+ */
41
+ 'publisherUserId'?: number;
42
+ /**
43
+ * 发布人名称
44
+ * @type {string}
45
+ * @memberof NoticeEntity
46
+ */
47
+ 'publisherName'?: string;
48
+ /**
49
+ * 发布时间
50
+ * @type {string}
51
+ * @memberof NoticeEntity
52
+ */
53
+ 'publisherTime'?: string;
54
+ /**
55
+ * 园区Id
56
+ * @type {number}
57
+ * @memberof NoticeEntity
58
+ */
59
+ 'parkId'?: number;
60
+ /**
61
+ * 来源 1:园区发布 2:保险生成
62
+ * @type {number}
63
+ * @memberof NoticeEntity
64
+ */
65
+ 'source'?: number;
66
+ /**
67
+ * 来源ID
68
+ * @type {string}
69
+ * @memberof NoticeEntity
70
+ */
71
+ 'sourceId'?: string;
72
+ /**
73
+ * 创建时间
74
+ * @type {string}
75
+ * @memberof NoticeEntity
76
+ */
77
+ 'createTime'?: string;
78
+ /**
79
+ * 更新时间
80
+ * @type {string}
81
+ * @memberof NoticeEntity
82
+ */
83
+ 'updateTime'?: string;
84
+ /**
85
+ * 是否删除 0删除 1未删除
86
+ * @type {number}
87
+ * @memberof NoticeEntity
88
+ */
89
+ 'isDelete'?: number;
90
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -17,6 +17,12 @@ import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
17
  * @interface WorkOrderIssueTypeSettingsAddOrUpdateVo
18
18
  */
19
19
  export interface WorkOrderIssueTypeSettingsAddOrUpdateVo {
20
+ /**
21
+ * id
22
+ * @type {number}
23
+ * @memberof WorkOrderIssueTypeSettingsAddOrUpdateVo
24
+ */
25
+ 'id'?: number;
20
26
  /**
21
27
  *
22
28
  * @type {WorkOrderTypeEnum}
@@ -17,6 +17,12 @@ import type { WorkOrderTypeEnum } from './work-order-type-enum';
17
17
  * @interface WorkOrderIssueTypeSettingsEntity
18
18
  */
19
19
  export interface WorkOrderIssueTypeSettingsEntity {
20
+ /**
21
+ *
22
+ * @type {number}
23
+ * @memberof WorkOrderIssueTypeSettingsEntity
24
+ */
25
+ 'id'?: number;
20
26
  /**
21
27
  * 园区id
22
28
  * @type {number}
package/models/index.ts CHANGED
@@ -207,6 +207,7 @@ export * from './json-result-list-work-order-step-by-step-push-user-details-dto'
207
207
  export * from './json-result-maintenance-standard-entity';
208
208
  export * from './json-result-monitoring-coverage-alert-work-order-details-dto';
209
209
  export * from './json-result-network-monitor-repair-details-dto';
210
+ export * from './json-result-notice-entity';
210
211
  export * from './json-result-offline-alert-work-order-details-dto';
211
212
  export * from './json-result-page-dto-access-appointment-record-details-dto';
212
213
  export * from './json-result-page-dto-access-blacklist-details-dto';
@@ -267,7 +268,8 @@ export * from './network-monitor-repair-details-dto';
267
268
  export * from './network-repair-info';
268
269
  export * from './news-in-button';
269
270
  export * from './news-info';
270
- export * from './notice-vo';
271
+ export * from './notice-add-vo';
272
+ export * from './notice-entity';
271
273
  export * from './offline-alert-device-vo';
272
274
  export * from './offline-alert-submit-vo';
273
275
  export * from './offline-alert-work-order-details-dto';
@@ -396,7 +398,6 @@ export * from './sys-user-attachment-info';
396
398
  export * from './sys-user-drop-down-box-list-dto';
397
399
  export * from './sys-user-info-dto';
398
400
  export * from './sys-user-msg-dto';
399
- export * from './sys-user-msg-notice-add-vo';
400
401
  export * from './sys-user-role';
401
402
  export * from './system-user-msg-source-type-enum';
402
403
  export * from './system-user-msg-type-enum';
@@ -0,0 +1,72 @@
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
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { BaseErrorResult } from './base-error-result';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { NoticeEntity } from './notice-entity';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultNoticeEntity
27
+ */
28
+ export interface JsonResultNoticeEntity {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultNoticeEntity
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultNoticeEntity
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultNoticeEntity
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {NoticeEntity}
50
+ * @memberof JsonResultNoticeEntity
51
+ */
52
+ 'data'?: NoticeEntity | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultNoticeEntity
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultNoticeEntity
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultNoticeEntity
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+
@@ -15,28 +15,28 @@
15
15
 
16
16
 
17
17
  /**
18
- * 添加公告入参
18
+ * 园区公告新增参数
19
19
  * @export
20
- * @interface SysUserMsgNoticeAddVO
20
+ * @interface NoticeAddVo
21
21
  */
22
- export interface SysUserMsgNoticeAddVO {
22
+ export interface NoticeAddVo {
23
23
  /**
24
24
  * 园区ID
25
25
  * @type {number}
26
- * @memberof SysUserMsgNoticeAddVO
26
+ * @memberof NoticeAddVo
27
27
  */
28
28
  'parkId': number;
29
29
  /**
30
30
  * 标题
31
31
  * @type {string}
32
- * @memberof SysUserMsgNoticeAddVO
32
+ * @memberof NoticeAddVo
33
33
  */
34
34
  'title': string;
35
35
  /**
36
- * 消息
36
+ * 内容
37
37
  * @type {string}
38
- * @memberof SysUserMsgNoticeAddVO
38
+ * @memberof NoticeAddVo
39
39
  */
40
- 'msg': string;
40
+ 'content': string;
41
41
  }
42
42
 
@@ -0,0 +1,96 @@
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
+
15
+
16
+
17
+ /**
18
+ * 返回数据,可以是任意类型的值
19
+ * @export
20
+ * @interface NoticeEntity
21
+ */
22
+ export interface NoticeEntity {
23
+ /**
24
+ * Id
25
+ * @type {number}
26
+ * @memberof NoticeEntity
27
+ */
28
+ 'id'?: number;
29
+ /**
30
+ * 标题
31
+ * @type {string}
32
+ * @memberof NoticeEntity
33
+ */
34
+ 'title'?: string;
35
+ /**
36
+ * 内容
37
+ * @type {string}
38
+ * @memberof NoticeEntity
39
+ */
40
+ 'content'?: string;
41
+ /**
42
+ * 发布人id
43
+ * @type {number}
44
+ * @memberof NoticeEntity
45
+ */
46
+ 'publisherUserId'?: number;
47
+ /**
48
+ * 发布人名称
49
+ * @type {string}
50
+ * @memberof NoticeEntity
51
+ */
52
+ 'publisherName'?: string;
53
+ /**
54
+ * 发布时间
55
+ * @type {string}
56
+ * @memberof NoticeEntity
57
+ */
58
+ 'publisherTime'?: string;
59
+ /**
60
+ * 园区Id
61
+ * @type {number}
62
+ * @memberof NoticeEntity
63
+ */
64
+ 'parkId'?: number;
65
+ /**
66
+ * 来源 1:园区发布 2:保险生成
67
+ * @type {number}
68
+ * @memberof NoticeEntity
69
+ */
70
+ 'source'?: number;
71
+ /**
72
+ * 来源ID
73
+ * @type {string}
74
+ * @memberof NoticeEntity
75
+ */
76
+ 'sourceId'?: string;
77
+ /**
78
+ * 创建时间
79
+ * @type {string}
80
+ * @memberof NoticeEntity
81
+ */
82
+ 'createTime'?: string;
83
+ /**
84
+ * 更新时间
85
+ * @type {string}
86
+ * @memberof NoticeEntity
87
+ */
88
+ 'updateTime'?: string;
89
+ /**
90
+ * 是否删除 0删除 1未删除
91
+ * @type {number}
92
+ * @memberof NoticeEntity
93
+ */
94
+ 'isDelete'?: number;
95
+ }
96
+