@ningboyz/types 1.1.16 → 1.1.17
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
|
@@ -55,8 +55,12 @@ export interface IPathResponse {
|
|
|
55
55
|
|
|
56
56
|
//前端虚拟字段
|
|
57
57
|
isRotate: number;
|
|
58
|
+
/** 大图预览路径 */
|
|
58
59
|
bigImage: string;
|
|
60
|
+
/** 小图预览路径 */
|
|
59
61
|
smaImage: string;
|
|
62
|
+
/** 附件是否已盖章 */
|
|
63
|
+
isSigned: number;
|
|
60
64
|
}
|
|
61
65
|
|
|
62
66
|
export class TPathResponse implements IPathResponse {
|
|
@@ -119,4 +123,6 @@ export class TPathResponse implements IPathResponse {
|
|
|
119
123
|
isRotate: number = 0;
|
|
120
124
|
bigImage: string = "";
|
|
121
125
|
smaImage: string = "";
|
|
126
|
+
/** 附件是否已盖章 */
|
|
127
|
+
isSigned: number = 0;
|
|
122
128
|
}
|