@ningboyz/types 1.0.76 → 1.0.78
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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDeptResponse, IDictResponse, ILaidResponse, IUnitResponse, IUserResponse } from "../core";
|
|
2
|
+
import { IUserPartResponse } from "../core/IUserPartResponse";
|
|
2
3
|
import { IGblbResponse } from "./IGblbResponse";
|
|
3
4
|
import { IZclbResponse } from "./IZclbResponse";
|
|
4
5
|
|
|
@@ -30,7 +31,7 @@ export interface ICardMainFindResponse {
|
|
|
30
31
|
cardGrrqRange: IRangeVal;
|
|
31
32
|
cardLaid: ILaidResponse[];
|
|
32
33
|
cardDept: IDeptResponse[];
|
|
33
|
-
cardUser:
|
|
34
|
+
cardUser: IUserPartResponse[];
|
|
34
35
|
cardKeep: IUserResponse[];
|
|
35
36
|
canSplit: number;
|
|
36
37
|
fromCardStat: number;
|
|
@@ -69,7 +70,7 @@ export class TCardMainFindResponse implements ICardMainFindResponse {
|
|
|
69
70
|
cardGrrqRange: IRangeVal = new TRangeVal();
|
|
70
71
|
cardLaid: ILaidResponse[] = [];
|
|
71
72
|
cardDept: IDeptResponse[] = [];
|
|
72
|
-
cardUser:
|
|
73
|
+
cardUser: IUserPartResponse[] = [];
|
|
73
74
|
cardKeep: IUserResponse[] = [];
|
|
74
75
|
canSplit: number = -1;
|
|
75
76
|
fromCardStat: number = -3;
|
|
@@ -24,6 +24,8 @@ export interface IPzptGlkmResponse {
|
|
|
24
24
|
glkmYefx: string;
|
|
25
25
|
glkmMemo: string;
|
|
26
26
|
|
|
27
|
+
cwkmText: string;
|
|
28
|
+
yskmText: string;
|
|
27
29
|
/** 左侧科目 */
|
|
28
30
|
listGLZD: IPzptGlkmzdResponse[];
|
|
29
31
|
/** 右侧科目 */
|
|
@@ -71,7 +73,8 @@ export class TPzptGlkmResponse implements IPzptGlkmResponse {
|
|
|
71
73
|
listGLZD: IPzptGlkmzdResponse[] = [];
|
|
72
74
|
/** 右侧科目 */
|
|
73
75
|
listGLFD: IPzptGlkmfdResponse[] = [];
|
|
74
|
-
|
|
76
|
+
cwkmText: string = "";
|
|
77
|
+
yskmText: string = "";
|
|
75
78
|
/** 科目标识(左) */
|
|
76
79
|
cwkmKmid: number = 0;
|
|
77
80
|
/** 科目编码(左) */
|