@ningboyz/types 1.0.83 → 1.0.85

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -42,6 +42,8 @@ export interface ITypeResponse extends IBaseResponse<ITypeResponse[]> {
42
42
  sysClasc: number;
43
43
  sysClasn: string;
44
44
  label: string;
45
+ sourceND: number;
46
+ typeMain: number;
45
47
  }
46
48
 
47
49
  export class TTypeResponse extends TBaseResponse<ITypeResponse[]> implements ITypeResponse {
@@ -83,6 +85,8 @@ export class TTypeResponse extends TBaseResponse<ITypeResponse[]> implements ITy
83
85
  sysClasc: number = 0;
84
86
  sysClasn: string = "";
85
87
  label: string = "";
88
+ sourceND: number = 0;
89
+ typeMain: number = 0;
86
90
 
87
91
  static toTree(listType: ITypeResponse[]) {
88
92
  return construct(listType, { id: "typeMain", pid: "parentID", children: "children" }) as ITypeResponse[];