@ningboyz/types 1.3.95 → 1.3.96
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
|
@@ -51,6 +51,7 @@ export interface IPathResponse {
|
|
|
51
51
|
updateAt: number;
|
|
52
52
|
updateBy: string;
|
|
53
53
|
pdfMerge: number;
|
|
54
|
+
pathPara: string;
|
|
54
55
|
fileMarkText: string;
|
|
55
56
|
/** 附件是否已盖章 */
|
|
56
57
|
usesDzqz: number; //是否签章0:否,1:是
|
|
@@ -115,7 +116,7 @@ export class TPathResponse implements IPathResponse {
|
|
|
115
116
|
queuesBy: number = 0;
|
|
116
117
|
readOnly: number = 0;
|
|
117
118
|
stayDark: number = 0;
|
|
118
|
-
|
|
119
|
+
pathPara: string = "";
|
|
119
120
|
thumbURL: string = "";
|
|
120
121
|
todoLock: number = 0;
|
|
121
122
|
updateAt: number = 0;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TCore } from "..";
|
|
2
|
+
|
|
1
3
|
export interface IHzcbNodeResponse {
|
|
2
4
|
whoBuild: number;
|
|
3
5
|
userIndx: number;
|
|
@@ -29,6 +31,8 @@ export interface IHzcbNodeResponse {
|
|
|
29
31
|
nodeMemo: string;
|
|
30
32
|
/**照片 */
|
|
31
33
|
hzcbCoverURL: string;
|
|
34
|
+
/** 附件 */
|
|
35
|
+
listPath: TCore.IPathResponse[];
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
export class THzcbNodeResponse implements IHzcbNodeResponse {
|
|
@@ -56,4 +60,5 @@ export class THzcbNodeResponse implements IHzcbNodeResponse {
|
|
|
56
60
|
nodeBlob: string = "";
|
|
57
61
|
nodeMemo: string = "";
|
|
58
62
|
hzcbCoverURL: string = "";
|
|
63
|
+
listPath: TCore.IPathResponse[] = [];
|
|
59
64
|
}
|