@ningboyz/types 1.5.31 → 1.5.33
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,11 +1,11 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
-
import {Const, TCore, TStim} from "..";
|
|
2
|
+
import { Const, TCore, TStim } from "..";
|
|
3
3
|
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
4
4
|
import { TFlowDataResponse } from "../flow";
|
|
5
5
|
import { ICardBookResponse } from "./ICardBookResponse";
|
|
6
|
+
import { IDataResponse } from "./ICardDataResponse";
|
|
6
7
|
import { ICardFromResponse } from "./ICardFromResponse";
|
|
7
8
|
import { ICardRoomResponse } from "./ICardRoomResponse";
|
|
8
|
-
import { IDataResponse } from "./ICardDataResponse";
|
|
9
9
|
|
|
10
10
|
export interface ICardMainResponse {
|
|
11
11
|
whoBuild: number;
|
|
@@ -413,11 +413,11 @@ export interface ICardMainResponse {
|
|
|
413
413
|
lastMemo: string;
|
|
414
414
|
userName: string;
|
|
415
415
|
userGUID: string;
|
|
416
|
-
|
|
416
|
+
|
|
417
417
|
// 小区
|
|
418
|
-
roomCode:string;
|
|
418
|
+
roomCode: string;
|
|
419
419
|
// 地址
|
|
420
|
-
roomAddr:string;
|
|
420
|
+
roomAddr: string;
|
|
421
421
|
/**
|
|
422
422
|
* 前端字段
|
|
423
423
|
*/
|
|
@@ -433,6 +433,8 @@ export interface ICardMainResponse {
|
|
|
433
433
|
listDDDW: IUserLiteResponse[];
|
|
434
434
|
/** 房产房源 */
|
|
435
435
|
listRoom: ICardRoomResponse[];
|
|
436
|
+
/** 房产房源附件 */
|
|
437
|
+
listRoomPath: IPathResponse[];
|
|
436
438
|
/** 产权信息 */
|
|
437
439
|
listBook: ICardBookResponse[];
|
|
438
440
|
/** 产权信息附件 */
|
|
@@ -454,7 +456,7 @@ export interface ICardMainResponse {
|
|
|
454
456
|
|
|
455
457
|
dataUses: string;
|
|
456
458
|
}
|
|
457
|
-
type Type = ICardMainResponse
|
|
459
|
+
type Type = ICardMainResponse;
|
|
458
460
|
export class TCardMainResponse implements Type {
|
|
459
461
|
whoBuild: number = 0;
|
|
460
462
|
cardIndx: number = 0;
|
|
@@ -693,9 +695,9 @@ export class TCardMainResponse implements Type {
|
|
|
693
695
|
|
|
694
696
|
wContact: string = ""; // 联系人
|
|
695
697
|
dContact: string = ""; // 联系电话
|
|
696
|
-
|
|
697
|
-
roomCode:string = "";
|
|
698
|
-
roomAddr:string = "";
|
|
698
|
+
|
|
699
|
+
roomCode: string = "";
|
|
700
|
+
roomAddr: string = "";
|
|
699
701
|
/** 二维码 */
|
|
700
702
|
cardQrde: string = "";
|
|
701
703
|
|
|
@@ -707,6 +709,7 @@ export class TCardMainResponse implements Type {
|
|
|
707
709
|
listBook: ICardBookResponse[] = [];
|
|
708
710
|
listBookPath: IPathResponse[] = [];
|
|
709
711
|
listRoom: ICardRoomResponse[] = [];
|
|
712
|
+
listRoomPath: IPathResponse[] = [];
|
|
710
713
|
listFrom: ICardFromResponse[] = [];
|
|
711
714
|
listPropDict: IDictResponse[] = [];
|
|
712
715
|
listPropDept: IDeptResponse[] = [];
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TCore } from "..";
|
|
2
|
+
|
|
1
3
|
export interface ICardRoomResponse {
|
|
2
4
|
whoBuild: number;
|
|
3
5
|
cardIndx: number;
|
|
@@ -117,6 +119,9 @@ export interface ICardRoomResponse {
|
|
|
117
119
|
|
|
118
120
|
/** 出租状态:1:已出租;0:未出租;-1:初始化 */
|
|
119
121
|
roomStat: number;
|
|
122
|
+
|
|
123
|
+
/**附件 */
|
|
124
|
+
listPath: TCore.IPathResponse[];
|
|
120
125
|
}
|
|
121
126
|
|
|
122
127
|
export class TCardRoomResponse implements ICardRoomResponse {
|
|
@@ -237,4 +242,6 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
237
242
|
|
|
238
243
|
/** 出租状态:1:已出租;0:未出租;-1:初始化 */
|
|
239
244
|
roomStat: number = -1;
|
|
245
|
+
|
|
246
|
+
listPath: TCore.IPathResponse[] = [];
|
|
240
247
|
}
|
|
@@ -74,6 +74,7 @@ export interface IFlowDataResponse {
|
|
|
74
74
|
path4Web: string;
|
|
75
75
|
flowText: string;
|
|
76
76
|
flowUser: string;
|
|
77
|
+
fromNode: number;
|
|
77
78
|
|
|
78
79
|
sourceND: number;
|
|
79
80
|
flowType: number;
|
|
@@ -159,6 +160,7 @@ export class TFlowDataResponse implements IFlowDataResponse {
|
|
|
159
160
|
path4Web: string = "";
|
|
160
161
|
flowText: string = "";
|
|
161
162
|
flowUser: string = "";
|
|
163
|
+
fromNode: number = 0;
|
|
162
164
|
|
|
163
165
|
flowType: number = 0;
|
|
164
166
|
flowWill: number = 0;
|