@ningboyz/types 1.1.15 → 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
|
@@ -341,7 +341,7 @@ export interface ICardMainResponse {
|
|
|
341
341
|
/** 使用id */
|
|
342
342
|
cardMain: number;
|
|
343
343
|
/** 单号id */
|
|
344
|
-
myoaCode:
|
|
344
|
+
myoaCode: string;
|
|
345
345
|
|
|
346
346
|
fromValueNew: number;
|
|
347
347
|
|
|
@@ -582,7 +582,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
582
582
|
startOut: number = 0;
|
|
583
583
|
endedOut: number = 0;
|
|
584
584
|
cardMain: number = 0;
|
|
585
|
-
myoaCode:
|
|
585
|
+
myoaCode: string = "";
|
|
586
586
|
|
|
587
587
|
/** 二维码 */
|
|
588
588
|
cardQrde: string = "";
|
|
@@ -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
|
}
|