@ningboyz/types 1.7.9 → 1.7.11
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/package.json
CHANGED
package/src/conf/IConfig.ts
CHANGED
|
@@ -58,10 +58,9 @@ export interface IGztbMainResponse {
|
|
|
58
58
|
|
|
59
59
|
startCnt: number;
|
|
60
60
|
endedCnt: number;
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
61
|
|
|
62
|
+
/** 启用特殊人员 */
|
|
63
|
+
usesFromType: number;
|
|
65
64
|
|
|
66
65
|
listTask: ITaskMainResponse[];
|
|
67
66
|
listYSDW: IUnitResponse[];
|
|
@@ -121,6 +120,9 @@ export class TGztbMainResponse implements IGztbMainResponse {
|
|
|
121
120
|
gztbName: string = "";
|
|
122
121
|
startCnt: number = 0;
|
|
123
122
|
endedCnt: number = 0;
|
|
123
|
+
|
|
124
|
+
usesFromType: number = 0;
|
|
125
|
+
|
|
124
126
|
listPath: TCore.IPathResponse[] = [];
|
|
125
127
|
listTask: ITaskMainResponse[] = [];
|
|
126
128
|
listYSDW: IUnitResponse[] = [];
|
|
@@ -37,8 +37,6 @@ export interface ITaskMainResponse {
|
|
|
37
37
|
allowUsr: number;
|
|
38
38
|
gzlmSize: number;
|
|
39
39
|
gzlmText: string;
|
|
40
|
-
userPartText: string;
|
|
41
|
-
readPartText: string;
|
|
42
40
|
rowTitle: number;
|
|
43
41
|
rowStart: number;
|
|
44
42
|
max4Gzbh: number;
|
|
@@ -56,6 +54,13 @@ export interface ITaskMainResponse {
|
|
|
56
54
|
|
|
57
55
|
taskPara: string;
|
|
58
56
|
|
|
57
|
+
/** 允许发布角色 */
|
|
58
|
+
userPartText: string;
|
|
59
|
+
/** 允许填报角色 */
|
|
60
|
+
readPartText: string;
|
|
61
|
+
/** 启用特殊类型 */
|
|
62
|
+
usesFromType: number;
|
|
63
|
+
|
|
59
64
|
listGZJG: IGzjgMainResponse[];
|
|
60
65
|
listGZLM: IGzjgGzlmResponse[];
|
|
61
66
|
gzlmLock: IGzjgGzlmResponse[];
|
|
@@ -104,8 +109,6 @@ export class TTaskMainResponse implements ITaskMainResponse {
|
|
|
104
109
|
allowUsr: number = 0;
|
|
105
110
|
gzlmSize: number = 0;
|
|
106
111
|
gzlmText: string = "";
|
|
107
|
-
userPartText: string = "";
|
|
108
|
-
readPartText: string = "";
|
|
109
112
|
rowTitle: number = 0;
|
|
110
113
|
rowStart: number = 0;
|
|
111
114
|
max4Gzbh: number = 0;
|
|
@@ -114,6 +117,10 @@ export class TTaskMainResponse implements ITaskMainResponse {
|
|
|
114
117
|
|
|
115
118
|
sysClasc: number = 0;
|
|
116
119
|
|
|
120
|
+
userPartText: string = "";
|
|
121
|
+
readPartText: string = "";
|
|
122
|
+
usesFromType: number = 0;
|
|
123
|
+
|
|
117
124
|
gzjgIndx: number[] = [];
|
|
118
125
|
gzlmFlid: number[] = [];
|
|
119
126
|
usrPartc: number[] = [];
|