@gizone/rrs-client 3.11.13-alpha.60 → 3.11.13-alpha.62
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.
- package/dist/esm/models/get-user-wx200-response.d.ts +12 -12
- package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +4 -3
- package/dist/esm/models/inspection-standard-entity.d.ts +0 -13
- package/dist/esm/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/get-user-wx200-response.d.ts +12 -12
- package/dist/models/inspection-standard-add-or-update-vo.d.ts +4 -3
- package/dist/models/inspection-standard-entity.d.ts +0 -13
- package/dist/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/sys-user.d.ts +4 -4
- package/models/get-user-wx200-response.ts +12 -12
- package/models/inspection-standard-add-or-update-vo.ts +6 -3
- package/models/inspection-standard-entity.ts +0 -15
- package/models/inspection-standard-import-dto.ts +2 -2
- package/models/ipage-access-vo.ts +6 -6
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
|
@@ -25,16 +25,16 @@ export interface GetUserWx200Response {
|
|
|
25
25
|
'status'?: number;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {Array<string>}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'headerNames'?: Array<string>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -53,12 +53,6 @@ export interface GetUserWx200Response {
|
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
55
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {number}
|
|
59
|
-
* @memberof GetUserWx200Response
|
|
60
|
-
*/
|
|
61
|
-
'bufferSize'?: number;
|
|
62
56
|
/**
|
|
63
57
|
*
|
|
64
58
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -67,16 +61,22 @@ export interface GetUserWx200Response {
|
|
|
67
61
|
'locale'?: GetUserWx200ResponseLocale;
|
|
68
62
|
/**
|
|
69
63
|
*
|
|
70
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
71
65
|
* @memberof GetUserWx200Response
|
|
72
66
|
*/
|
|
73
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
74
68
|
/**
|
|
75
69
|
*
|
|
76
70
|
* @type {number}
|
|
77
71
|
* @memberof GetUserWx200Response
|
|
78
72
|
*/
|
|
79
73
|
'contentLengthLong'?: number;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof GetUserWx200Response
|
|
78
|
+
*/
|
|
79
|
+
'characterEncoding'?: string;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
82
|
* @type {boolean}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
12
13
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
13
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
14
15
|
/**
|
|
@@ -18,11 +19,11 @@ import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
|
18
19
|
*/
|
|
19
20
|
export interface InspectionStandardAddOrUpdateVO {
|
|
20
21
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {
|
|
22
|
+
*
|
|
23
|
+
* @type {InspectionCategoryEnum}
|
|
23
24
|
* @memberof InspectionStandardAddOrUpdateVO
|
|
24
25
|
*/
|
|
25
|
-
'
|
|
26
|
+
'category': InspectionCategoryEnum;
|
|
26
27
|
/**
|
|
27
28
|
* 内容
|
|
28
29
|
* @type {string}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { EquipmentSystemEntity } from './equipment-system-entity';
|
|
13
12
|
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
14
13
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
15
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
@@ -31,12 +30,6 @@ export interface InspectionStandardEntity {
|
|
|
31
30
|
* @memberof InspectionStandardEntity
|
|
32
31
|
*/
|
|
33
32
|
'category'?: InspectionCategoryEnum;
|
|
34
|
-
/**
|
|
35
|
-
* 设备系统ID
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof InspectionStandardEntity
|
|
38
|
-
*/
|
|
39
|
-
'equipmentSystemId'?: number;
|
|
40
33
|
/**
|
|
41
34
|
* 内容
|
|
42
35
|
* @type {string}
|
|
@@ -133,10 +126,4 @@ export interface InspectionStandardEntity {
|
|
|
133
126
|
* @memberof InspectionStandardEntity
|
|
134
127
|
*/
|
|
135
128
|
'executionTime'?: number;
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
138
|
-
* @type {EquipmentSystemEntity}
|
|
139
|
-
* @memberof InspectionStandardEntity
|
|
140
|
-
*/
|
|
141
|
-
'equipmentSystem'?: EquipmentSystemEntity;
|
|
142
129
|
}
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface InspectionStandardImportDTO {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* 巡检分类
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof InspectionStandardImportDTO
|
|
22
22
|
*/
|
|
23
|
-
'
|
|
23
|
+
'category'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* 内容项
|
|
26
26
|
* @type {string}
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -357,14 +357,14 @@ export interface SysUser {
|
|
|
357
357
|
'supplierId'?: number;
|
|
358
358
|
/**
|
|
359
359
|
*
|
|
360
|
-
* @type {
|
|
360
|
+
* @type {number}
|
|
361
361
|
* @memberof SysUser
|
|
362
362
|
*/
|
|
363
|
-
'
|
|
363
|
+
'cuserId'?: number;
|
|
364
364
|
/**
|
|
365
365
|
*
|
|
366
|
-
* @type {
|
|
366
|
+
* @type {string}
|
|
367
367
|
* @memberof SysUser
|
|
368
368
|
*/
|
|
369
|
-
'
|
|
369
|
+
'cid'?: string;
|
|
370
370
|
}
|
|
@@ -25,16 +25,16 @@ export interface GetUserWx200Response {
|
|
|
25
25
|
'status'?: number;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {Array<string>}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'headerNames'?: Array<string>;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -53,12 +53,6 @@ export interface GetUserWx200Response {
|
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
55
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {number}
|
|
59
|
-
* @memberof GetUserWx200Response
|
|
60
|
-
*/
|
|
61
|
-
'bufferSize'?: number;
|
|
62
56
|
/**
|
|
63
57
|
*
|
|
64
58
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -67,16 +61,22 @@ export interface GetUserWx200Response {
|
|
|
67
61
|
'locale'?: GetUserWx200ResponseLocale;
|
|
68
62
|
/**
|
|
69
63
|
*
|
|
70
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
71
65
|
* @memberof GetUserWx200Response
|
|
72
66
|
*/
|
|
73
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
74
68
|
/**
|
|
75
69
|
*
|
|
76
70
|
* @type {number}
|
|
77
71
|
* @memberof GetUserWx200Response
|
|
78
72
|
*/
|
|
79
73
|
'contentLengthLong'?: number;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof GetUserWx200Response
|
|
78
|
+
*/
|
|
79
|
+
'characterEncoding'?: string;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
82
|
* @type {boolean}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
12
13
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
13
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
14
15
|
/**
|
|
@@ -18,11 +19,11 @@ import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
|
18
19
|
*/
|
|
19
20
|
export interface InspectionStandardAddOrUpdateVO {
|
|
20
21
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {
|
|
22
|
+
*
|
|
23
|
+
* @type {InspectionCategoryEnum}
|
|
23
24
|
* @memberof InspectionStandardAddOrUpdateVO
|
|
24
25
|
*/
|
|
25
|
-
'
|
|
26
|
+
'category': InspectionCategoryEnum;
|
|
26
27
|
/**
|
|
27
28
|
* 内容
|
|
28
29
|
* @type {string}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { EquipmentSystemEntity } from './equipment-system-entity';
|
|
13
12
|
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
14
13
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
15
14
|
import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
@@ -31,12 +30,6 @@ export interface InspectionStandardEntity {
|
|
|
31
30
|
* @memberof InspectionStandardEntity
|
|
32
31
|
*/
|
|
33
32
|
'category'?: InspectionCategoryEnum;
|
|
34
|
-
/**
|
|
35
|
-
* 设备系统ID
|
|
36
|
-
* @type {number}
|
|
37
|
-
* @memberof InspectionStandardEntity
|
|
38
|
-
*/
|
|
39
|
-
'equipmentSystemId'?: number;
|
|
40
33
|
/**
|
|
41
34
|
* 内容
|
|
42
35
|
* @type {string}
|
|
@@ -133,10 +126,4 @@ export interface InspectionStandardEntity {
|
|
|
133
126
|
* @memberof InspectionStandardEntity
|
|
134
127
|
*/
|
|
135
128
|
'executionTime'?: number;
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
138
|
-
* @type {EquipmentSystemEntity}
|
|
139
|
-
* @memberof InspectionStandardEntity
|
|
140
|
-
*/
|
|
141
|
-
'equipmentSystem'?: EquipmentSystemEntity;
|
|
142
129
|
}
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface InspectionStandardImportDTO {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* 巡检分类
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof InspectionStandardImportDTO
|
|
22
22
|
*/
|
|
23
|
-
'
|
|
23
|
+
'category'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* 内容项
|
|
26
26
|
* @type {string}
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -357,14 +357,14 @@ export interface SysUser {
|
|
|
357
357
|
'supplierId'?: number;
|
|
358
358
|
/**
|
|
359
359
|
*
|
|
360
|
-
* @type {
|
|
360
|
+
* @type {number}
|
|
361
361
|
* @memberof SysUser
|
|
362
362
|
*/
|
|
363
|
-
'
|
|
363
|
+
'cuserId'?: number;
|
|
364
364
|
/**
|
|
365
365
|
*
|
|
366
|
-
* @type {
|
|
366
|
+
* @type {string}
|
|
367
367
|
* @memberof SysUser
|
|
368
368
|
*/
|
|
369
|
-
'
|
|
369
|
+
'cid'?: string;
|
|
370
370
|
}
|
|
@@ -34,16 +34,16 @@ export interface GetUserWx200Response {
|
|
|
34
34
|
'status'?: number;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {Array<string>}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'headerNames'?: Array<string>;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {object}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {string}
|
|
@@ -62,12 +62,6 @@ export interface GetUserWx200Response {
|
|
|
62
62
|
* @memberof GetUserWx200Response
|
|
63
63
|
*/
|
|
64
64
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {number}
|
|
68
|
-
* @memberof GetUserWx200Response
|
|
69
|
-
*/
|
|
70
|
-
'bufferSize'?: number;
|
|
71
65
|
/**
|
|
72
66
|
*
|
|
73
67
|
* @type {GetUserWx200ResponseLocale}
|
|
@@ -76,16 +70,22 @@ export interface GetUserWx200Response {
|
|
|
76
70
|
'locale'?: GetUserWx200ResponseLocale;
|
|
77
71
|
/**
|
|
78
72
|
*
|
|
79
|
-
* @type {
|
|
73
|
+
* @type {number}
|
|
80
74
|
* @memberof GetUserWx200Response
|
|
81
75
|
*/
|
|
82
|
-
'
|
|
76
|
+
'bufferSize'?: number;
|
|
83
77
|
/**
|
|
84
78
|
*
|
|
85
79
|
* @type {number}
|
|
86
80
|
* @memberof GetUserWx200Response
|
|
87
81
|
*/
|
|
88
82
|
'contentLengthLong'?: number;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof GetUserWx200Response
|
|
87
|
+
*/
|
|
88
|
+
'characterEncoding'?: string;
|
|
89
89
|
/**
|
|
90
90
|
*
|
|
91
91
|
* @type {boolean}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import type { WorkOrderPlanHolidaysEnum } from './work-order-plan-holidays-enum';
|
|
@@ -27,11 +30,11 @@ import type { WorkOrderPlanRepeatsEnum } from './work-order-plan-repeats-enum';
|
|
|
27
30
|
*/
|
|
28
31
|
export interface InspectionStandardAddOrUpdateVO {
|
|
29
32
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {
|
|
33
|
+
*
|
|
34
|
+
* @type {InspectionCategoryEnum}
|
|
32
35
|
* @memberof InspectionStandardAddOrUpdateVO
|
|
33
36
|
*/
|
|
34
|
-
'
|
|
37
|
+
'category': InspectionCategoryEnum;
|
|
35
38
|
/**
|
|
36
39
|
* 内容
|
|
37
40
|
* @type {string}
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import type { EquipmentSystemEntity } from './equipment-system-entity';
|
|
19
16
|
// May contain unused imports in some cases
|
|
20
17
|
// @ts-ignore
|
|
21
18
|
import type { InspectionCategoryEnum } from './inspection-category-enum';
|
|
@@ -44,12 +41,6 @@ export interface InspectionStandardEntity {
|
|
|
44
41
|
* @memberof InspectionStandardEntity
|
|
45
42
|
*/
|
|
46
43
|
'category'?: InspectionCategoryEnum;
|
|
47
|
-
/**
|
|
48
|
-
* 设备系统ID
|
|
49
|
-
* @type {number}
|
|
50
|
-
* @memberof InspectionStandardEntity
|
|
51
|
-
*/
|
|
52
|
-
'equipmentSystemId'?: number;
|
|
53
44
|
/**
|
|
54
45
|
* 内容
|
|
55
46
|
* @type {string}
|
|
@@ -146,12 +137,6 @@ export interface InspectionStandardEntity {
|
|
|
146
137
|
* @memberof InspectionStandardEntity
|
|
147
138
|
*/
|
|
148
139
|
'executionTime'?: number;
|
|
149
|
-
/**
|
|
150
|
-
*
|
|
151
|
-
* @type {EquipmentSystemEntity}
|
|
152
|
-
* @memberof InspectionStandardEntity
|
|
153
|
-
*/
|
|
154
|
-
'equipmentSystem'?: EquipmentSystemEntity;
|
|
155
140
|
}
|
|
156
141
|
|
|
157
142
|
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface InspectionStandardImportDTO {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* 巡检分类
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof InspectionStandardImportDTO
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
28
|
+
'category'?: string;
|
|
29
29
|
/**
|
|
30
30
|
* 内容项
|
|
31
31
|
* @type {string}
|
|
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
|
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof IPageAccessVO
|
|
48
|
-
*/
|
|
49
|
-
'searchCount'?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -60,6 +54,12 @@ export interface IPageAccessVO {
|
|
|
60
54
|
* @deprecated
|
|
61
55
|
*/
|
|
62
56
|
'hitCount'?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof IPageAccessVO
|
|
61
|
+
*/
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
package/models/sys-user.ts
CHANGED
|
@@ -364,15 +364,15 @@ export interface SysUser {
|
|
|
364
364
|
'supplierId'?: number;
|
|
365
365
|
/**
|
|
366
366
|
*
|
|
367
|
-
* @type {
|
|
367
|
+
* @type {number}
|
|
368
368
|
* @memberof SysUser
|
|
369
369
|
*/
|
|
370
|
-
'
|
|
370
|
+
'cuserId'?: number;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
}
|
|
378
378
|
|