@ningboyz/types 1.5.169 → 1.5.170
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
|
@@ -69,6 +69,12 @@ export interface ISysTravelResponse {
|
|
|
69
69
|
travelID: number;
|
|
70
70
|
|
|
71
71
|
thirdApp: string;
|
|
72
|
+
|
|
73
|
+
billStat: number;
|
|
74
|
+
unitMain: number;
|
|
75
|
+
unitText: string;
|
|
76
|
+
|
|
77
|
+
|
|
72
78
|
withParaConv: ISysTravelWithParaResponse;
|
|
73
79
|
}
|
|
74
80
|
|
|
@@ -114,6 +120,9 @@ export class TSysTravelResponse implements ISysTravelResponse {
|
|
|
114
120
|
menuName: string = "";
|
|
115
121
|
withPara: string = "";
|
|
116
122
|
thirdApp: string = "";
|
|
123
|
+
billStat: number = 0;
|
|
124
|
+
unitMain: number = 0;
|
|
125
|
+
unitText: string = "";
|
|
117
126
|
withParaConv: ISysTravelWithParaResponse = new TSysTravelWithParaResponse();
|
|
118
127
|
|
|
119
128
|
static parseJson(withPara: string) {
|
|
@@ -6,6 +6,7 @@ import { ITakeBillResponse } from "./ITakeBillResponse";
|
|
|
6
6
|
import _ from "lodash";
|
|
7
7
|
|
|
8
8
|
import { TStim } from "..";
|
|
9
|
+
import { ITablMainResponse } from "../tabl";
|
|
9
10
|
export interface ITakeMainResponse {
|
|
10
11
|
whoBuild: number;
|
|
11
12
|
userIndx: number;
|
|
@@ -105,6 +106,7 @@ export interface ITakeMainResponse {
|
|
|
105
106
|
listLYYH: IUserResponse[]; //#领用用户
|
|
106
107
|
listSQYH: IUserResponse[]; //#申请用户
|
|
107
108
|
listLock: ITakeMainResponse[]; //#关连单据
|
|
109
|
+
listTabl: ITablMainResponse[]; //#表单
|
|
108
110
|
}
|
|
109
111
|
|
|
110
112
|
export class TTakeMainResponse implements ITakeMainResponse {
|
|
@@ -204,6 +206,7 @@ export class TTakeMainResponse implements ITakeMainResponse {
|
|
|
204
206
|
listBill: ITakeBillResponse[] = [];
|
|
205
207
|
listLYYH: IUserResponse[] = [];
|
|
206
208
|
listLock: ITakeMainResponse[] = [];
|
|
209
|
+
listTabl: ITablMainResponse[] = [];
|
|
207
210
|
|
|
208
211
|
constructor(data: Partial<ITakeMainResponse> = {}) {
|
|
209
212
|
if (data) {
|