@ningboyz/types 1.1.17 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -52,6 +52,8 @@ 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;
@@ -59,8 +61,6 @@ export interface IPathResponse {
59
61
  bigImage: string;
60
62
  /** 小图预览路径 */
61
63
  smaImage: string;
62
- /** 附件是否已盖章 */
63
- isSigned: number;
64
64
  }
65
65
 
66
66
  export class TPathResponse implements IPathResponse {
@@ -119,10 +119,11 @@ export class TPathResponse implements IPathResponse {
119
119
  pdfMerge: number = 0; // 是否pdf合并
120
120
  fileMarkText: string = "";
121
121
 
122
+ /** 附件是否已盖章 */
123
+ usesDzqz: number = 0; //是否签章0:否,1:是
124
+
122
125
  //前端虚拟字段
123
126
  isRotate: number = 0;
124
127
  bigImage: string = "";
125
128
  smaImage: string = "";
126
- /** 附件是否已盖章 */
127
- isSigned: number = 0;
128
129
  }