@ningboyz/types 1.3.68 → 1.3.70

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.3.68",
4
+ "version": "1.3.70",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -28,6 +28,10 @@ export interface IDictResponseDictPara {
28
28
  needSign:boolean
29
29
  /** 是否不可以改变 */
30
30
  canNotChange: boolean;
31
+ /** 是否为需要进行签章的电子签章类型 */
32
+ isDzqzSign:boolean
33
+ /** 原合同的相关附件类型 */
34
+ yzhtPathType:boolean
31
35
  }
32
36
 
33
37
  export class TDictResponseDictPara implements IDictResponseDictPara {
@@ -54,4 +58,8 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
54
58
  needSign:boolean=false
55
59
  /** 附件类型是否不可以上传,拍摄等操作 */
56
60
  canNotChange: boolean = false;
61
+ /** 是否为需要进行签章的电子签章类型 */
62
+ isDzqzSign:boolean = false
63
+ /** 原合同的相关附件类型 */
64
+ yzhtPathType:boolean=false
57
65
  }
@@ -63,8 +63,8 @@ export interface IPathResponse {
63
63
  smaImage: string;
64
64
  /** 唯一indx */
65
65
  billFrom: number;
66
- /** 是否可删除 */
67
- canDelete: number;
66
+ /** 是否不可删除 */
67
+ canNotDelete: number;
68
68
  }
69
69
 
70
70
  export class TPathResponse implements IPathResponse {
@@ -132,6 +132,6 @@ export class TPathResponse implements IPathResponse {
132
132
  smaImage: string = "";
133
133
  /** 唯一indx */
134
134
  billFrom: number = 0;
135
- /** 是否可删除 */
136
- canDelete: number = 1;
135
+ /** 是否不可删除 */
136
+ canNotDelete: number = 1;
137
137
  }
@@ -67,6 +67,11 @@ export interface IHznjZbjgItemResponse {
67
67
  xmsyCode: string;
68
68
  /**制备样品编号 */
69
69
  fromItemCode: string;
70
+
71
+ /**正样结存数量 */
72
+ mainJcsl: number;
73
+ /**副样结存数量 */
74
+ minoJcsl: number;
70
75
  }
71
76
 
72
77
  export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
@@ -120,6 +125,11 @@ export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
120
125
  xmsyCode: string = "";
121
126
  fromItemCode: string = "";
122
127
 
128
+ /**正样结存数量 */
129
+ mainJcsl: number = 0;
130
+ /**副样结存数量 */
131
+ minoJcsl: number = 0;
132
+
123
133
  constructor(data: Partial<IHznjZbjgItemResponse> = {}) {
124
134
  if (data) {
125
135
  _.merge(this, _.pick(data, Object.keys(this)));