@ningboyz/types 1.3.176 → 1.3.177

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.176",
4
+ "version": "1.3.177",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -38,6 +38,8 @@ export interface IDictResponseDictPara {
38
38
  isDzqzSign:boolean
39
39
  /** 原合同的相关附件类型 */
40
40
  yzhtPathType:boolean
41
+ /** 品种技术中动态字段的名称 */
42
+ formFieldObj:IFormFieldObj
41
43
  }
42
44
 
43
45
  export class TDictResponseDictPara implements IDictResponseDictPara {
@@ -70,4 +72,13 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
70
72
  isDzqzSign:boolean = false
71
73
  /** 原合同的相关附件类型 */
72
74
  yzhtPathType:boolean=false
75
+ /** 品种技术中动态字段的名称 */
76
+ formFieldObj:IFormFieldObj = {authorField:"发明人",bookCodeField:"证书号",magaZineField:"编号"}
77
+ }
78
+
79
+
80
+ export interface IFormFieldObj {
81
+ authorField: string;
82
+ bookCodeField: string;
83
+ magaZineField: string;
73
84
  }