@ningboyz/types 1.3.20 → 1.3.21
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
|
@@ -16,6 +16,7 @@ export interface IDictResponseDictPara {
|
|
|
16
16
|
* */
|
|
17
17
|
change: string[];
|
|
18
18
|
noChange: string[];
|
|
19
|
+
code: string;
|
|
19
20
|
zcdbType: number; ///字典-资产调拨-单据类型 配置0, 为单位内,调拨只在同一个单位下进行,调拨到其他部门。配置1,为跨单位调拨。配置2,为跨部门调拨
|
|
20
21
|
/** 是否附件类型不判断必填 */
|
|
21
22
|
notRequiredPath: boolean;
|
|
@@ -43,4 +44,6 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
43
44
|
fraction: number = 0;
|
|
44
45
|
/** 是否填写付费总额 */
|
|
45
46
|
isPayTotal: number = 0;
|
|
47
|
+
/** 对应的编码 */
|
|
48
|
+
code: string = "";
|
|
46
49
|
}
|