@ningboyz/types 1.4.177 → 1.4.179
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
|
@@ -52,6 +52,10 @@ export interface ILaidResponse extends IBaseResponse<ILaidResponse> {
|
|
|
52
52
|
isPublic: number;
|
|
53
53
|
isCommon: number; // #1:公务仓;0:普通存放地点
|
|
54
54
|
sysclasc: number; // , 模块大类
|
|
55
|
+
laidAddr: string; // #存放地点.地址
|
|
56
|
+
laidDate: number; // #存放地点.日期
|
|
57
|
+
laidCall: string; // #存放地点.联系电话
|
|
58
|
+
|
|
55
59
|
/**
|
|
56
60
|
* 所属部门
|
|
57
61
|
* */
|
|
@@ -64,6 +68,8 @@ export interface ILaidResponse extends IBaseResponse<ILaidResponse> {
|
|
|
64
68
|
* 部门权限
|
|
65
69
|
* */
|
|
66
70
|
listDept: IDeptResponse[];
|
|
71
|
+
// 附件
|
|
72
|
+
listPath: TCore.IPathResponse[];
|
|
67
73
|
}
|
|
68
74
|
|
|
69
75
|
export class TLaidResponse extends TBaseResponse<ILaidResponse> implements ILaidResponse {
|
|
@@ -116,6 +122,10 @@ export class TLaidResponse extends TBaseResponse<ILaidResponse> implements ILaid
|
|
|
116
122
|
isCommon: number = 0;
|
|
117
123
|
deptMain: number = 0;
|
|
118
124
|
listDept: IDeptResponse[] = [];
|
|
125
|
+
listPath: TCore.IPathResponse[] = [];
|
|
126
|
+
laidAddr: string = "";
|
|
127
|
+
laidDate: number = 0;
|
|
128
|
+
laidCall: string = "";
|
|
119
129
|
|
|
120
130
|
public static toTree(listLaid: ILaidResponse[]) {
|
|
121
131
|
return construct(listLaid, { id: "laidIndx", pid: "parentID", children: "children" }) as ILaidResponse[];
|
|
@@ -22,6 +22,8 @@ export interface IHzcbXmssBillResponse {
|
|
|
22
22
|
fromUserIndx: number;
|
|
23
23
|
fromHzcbIndx: number;
|
|
24
24
|
fromNodeIndx: number;
|
|
25
|
+
/**分组id */
|
|
26
|
+
teamUUID: string;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
export class THzcbXmssBillResponse implements IHzcbXmssBillResponse {
|
|
@@ -48,4 +50,6 @@ export class THzcbXmssBillResponse implements IHzcbXmssBillResponse {
|
|
|
48
50
|
fromUserIndx: number = 0;
|
|
49
51
|
fromHzcbIndx: number = 0;
|
|
50
52
|
fromNodeIndx: number = 0;
|
|
53
|
+
/**分组id */
|
|
54
|
+
teamUUID: string = "";
|
|
51
55
|
}
|