@ningboyz/types 1.3.128 → 1.3.129

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.128",
4
+ "version": "1.3.129",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -7,6 +7,10 @@ export interface IDictResponseDictPara {
7
7
  gdzc: boolean; //字典-部门类型是否是固定资产
8
8
  unused: number; //字典-资产状态_固定资产是否是闲置状态
9
9
  used: number; //字典-资产状态_固定资产是否是在用状态
10
+ /**
11
+ * 是否为默认值 为1则是默认值
12
+ * */
13
+ isDefault: number;
10
14
  /**
11
15
  * 变动方式改变,改变对应配置。
12
16
  * 配置: 系统字典 变动方式-固定资产 约定参数
@@ -39,6 +43,7 @@ export interface IDictResponseDictPara {
39
43
  export class TDictResponseDictPara implements IDictResponseDictPara {
40
44
  step: number = 0;
41
45
  zb: boolean = false;
46
+ isDefault: number = 0;
42
47
  required: boolean = false;
43
48
  hidden: boolean = false;
44
49
  show: boolean = false;