@ningboyz/types 1.1.16 → 1.1.18
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,10 +52,14 @@ export interface IPathResponse {
|
|
|
52
52
|
updateBy: string;
|
|
53
53
|
pdfMerge: number;
|
|
54
54
|
fileMarkText: string;
|
|
55
|
+
/** 附件是否已盖章 */
|
|
56
|
+
usesDzqz: number; //是否签章0:否,1:是
|
|
55
57
|
|
|
56
58
|
//前端虚拟字段
|
|
57
59
|
isRotate: number;
|
|
60
|
+
/** 大图预览路径 */
|
|
58
61
|
bigImage: string;
|
|
62
|
+
/** 小图预览路径 */
|
|
59
63
|
smaImage: string;
|
|
60
64
|
}
|
|
61
65
|
|
|
@@ -115,6 +119,9 @@ export class TPathResponse implements IPathResponse {
|
|
|
115
119
|
pdfMerge: number = 0; // 是否pdf合并
|
|
116
120
|
fileMarkText: string = "";
|
|
117
121
|
|
|
122
|
+
/** 附件是否已盖章 */
|
|
123
|
+
usesDzqz: number = 0; //是否签章0:否,1:是
|
|
124
|
+
|
|
118
125
|
//前端虚拟字段
|
|
119
126
|
isRotate: number = 0;
|
|
120
127
|
bigImage: string = "";
|