@gizone/rrs-client 4.2.0-alpha.233 → 4.2.0-alpha.235

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.
@@ -892,6 +892,7 @@ models/sys-notice.ts
892
892
  models/sys-oper-log.ts
893
893
  models/sys-post.ts
894
894
  models/sys-role.ts
895
+ models/sys-user-attachment-info.ts
895
896
  models/sys-user-drop-down-box-list-dto.ts
896
897
  models/sys-user-info-dto.ts
897
898
  models/sys-user-msg-dto.ts
@@ -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';
@@ -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 {};
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
14
15
  /**
15
16
  * 用户对象
16
17
  * @export
@@ -361,6 +362,12 @@ export interface SysUser {
361
362
  * @memberof SysUser
362
363
  */
363
364
  'userNo'?: string;
365
+ /**
366
+ * 用户附件
367
+ * @type {Array<SysUserAttachmentInfo>}
368
+ * @memberof SysUser
369
+ */
370
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
364
371
  /**
365
372
  *
366
373
  * @type {number}
@@ -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';
@@ -843,6 +843,7 @@ __exportStar(require("./sys-oper-log"), exports);
843
843
  __exportStar(require("./sys-post"), exports);
844
844
  __exportStar(require("./sys-role"), exports);
845
845
  __exportStar(require("./sys-user"), exports);
846
+ __exportStar(require("./sys-user-attachment-info"), exports);
846
847
  __exportStar(require("./sys-user-drop-down-box-list-dto"), exports);
847
848
  __exportStar(require("./sys-user-info-dto"), exports);
848
849
  __exportStar(require("./sys-user-msg-dto"), exports);
@@ -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,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 });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
14
15
  /**
15
16
  * 用户对象
16
17
  * @export
@@ -361,6 +362,12 @@ export interface SysUser {
361
362
  * @memberof SysUser
362
363
  */
363
364
  'userNo'?: string;
365
+ /**
366
+ * 用户附件
367
+ * @type {Array<SysUserAttachmentInfo>}
368
+ * @memberof SysUser
369
+ */
370
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
364
371
  /**
365
372
  *
366
373
  * @type {number}
package/models/index.ts CHANGED
@@ -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';
@@ -0,0 +1,48 @@
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 SysUserAttachmentInfo
21
+ */
22
+ export interface SysUserAttachmentInfo {
23
+ /**
24
+ * 附件名称
25
+ * @type {string}
26
+ * @memberof SysUserAttachmentInfo
27
+ */
28
+ 'fileName'?: string;
29
+ /**
30
+ * 附件路径
31
+ * @type {string}
32
+ * @memberof SysUserAttachmentInfo
33
+ */
34
+ 'filePath'?: string;
35
+ /**
36
+ * 开始时间
37
+ * @type {string}
38
+ * @memberof SysUserAttachmentInfo
39
+ */
40
+ 'startTime'?: string;
41
+ /**
42
+ * 结束时间
43
+ * @type {string}
44
+ * @memberof SysUserAttachmentInfo
45
+ */
46
+ 'endTime'?: string;
47
+ }
48
+
@@ -19,6 +19,9 @@ import type { SysDept } from './sys-dept';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { SysRole } from './sys-role';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
22
25
 
23
26
  /**
24
27
  * 用户对象
@@ -368,6 +371,12 @@ export interface SysUser {
368
371
  * @memberof SysUser
369
372
  */
370
373
  'userNo'?: string;
374
+ /**
375
+ * 用户附件
376
+ * @type {Array<SysUserAttachmentInfo>}
377
+ * @memberof SysUser
378
+ */
379
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
371
380
  /**
372
381
  *
373
382
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.233",
3
+ "version": "4.2.0-alpha.235",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {