@ningboyz/types 1.3.63 → 1.3.64
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
|
@@ -24,6 +24,10 @@ export interface IDictResponseDictPara {
|
|
|
24
24
|
fraction: number;
|
|
25
25
|
/** 是否填写付费总额 */
|
|
26
26
|
isPayTotal: number;
|
|
27
|
+
/** 是否需要签章 */
|
|
28
|
+
needSign:boolean
|
|
29
|
+
/** 是否不可以改变 */
|
|
30
|
+
canNotChange: boolean;
|
|
27
31
|
}
|
|
28
32
|
|
|
29
33
|
export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
@@ -46,4 +50,8 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
46
50
|
isPayTotal: number = 0;
|
|
47
51
|
/** 对应的编码 */
|
|
48
52
|
code: string = "";
|
|
53
|
+
/** 是否需要签章 */
|
|
54
|
+
needSign:boolean=false
|
|
55
|
+
/** 附件类型是否不可以上传,拍摄等操作 */
|
|
56
|
+
canNotChange: boolean = false;
|
|
49
57
|
}
|
|
@@ -63,6 +63,8 @@ export interface IPathResponse {
|
|
|
63
63
|
smaImage: string;
|
|
64
64
|
/** 唯一indx */
|
|
65
65
|
billFrom: number;
|
|
66
|
+
/** 是否可删除 */
|
|
67
|
+
canDelete: number;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
export class TPathResponse implements IPathResponse {
|
|
@@ -130,4 +132,6 @@ export class TPathResponse implements IPathResponse {
|
|
|
130
132
|
smaImage: string = "";
|
|
131
133
|
/** 唯一indx */
|
|
132
134
|
billFrom: number = 0;
|
|
135
|
+
/** 是否可删除 */
|
|
136
|
+
canDelete: number = 1;
|
|
133
137
|
}
|