@ningboyz/types 1.4.5 → 1.4.7

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.4.5",
4
+ "version": "1.4.7",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,4 +1,5 @@
1
1
  import { IUnitResponse } from "../core";
2
+ import _ from "lodash";
2
3
 
3
4
  export interface IJapzCnfgResponse {
4
5
  whoBuild: number;
@@ -34,6 +35,7 @@ export interface IJapzCnfgResponse {
34
35
  cnfgMemo: string;
35
36
  /** 单位归属 */
36
37
  unitText: string;
38
+ parentCD: string;
37
39
 
38
40
  listUnit: IUnitResponse[];
39
41
  }
@@ -68,6 +70,7 @@ export class TJapzCnfgResponse implements IJapzCnfgResponse {
68
70
  cnfgName: string = "";
69
71
  cnfgMemo: string = "";
70
72
  unitText: string = "";
73
+ parentCD: string = "";
71
74
 
72
75
  listUnit: IUnitResponse[] = [];
73
76
 
@@ -32,6 +32,7 @@ export interface IJapzK0kmResponse {
32
32
  k0kmKmbm: string;
33
33
  /** 分类名称 */
34
34
  k0kmKmmc: string;
35
+ parentCD: string;
35
36
  }
36
37
 
37
38
  export class TJapzK0kmResponse implements IJapzK0kmResponse {
@@ -63,6 +64,7 @@ export class TJapzK0kmResponse implements IJapzK0kmResponse {
63
64
  entityID: string = "";
64
65
  k0kmKmbm: string = "";
65
66
  k0kmKmmc: string = "";
67
+ parentCD: string = "";
66
68
 
67
69
  constructor(data: Partial<IJapzK0kmResponse> = {}) {
68
70
  if (data) {
@@ -33,6 +33,7 @@ export interface IJapzK7kmResponse {
33
33
  k7kmKmbm: string;
34
34
  /** 任务名称 */
35
35
  k7kmKmmc: string;
36
+ parentCD: string;
36
37
 
37
38
  /**检测项目 */
38
39
  listItem: IJapzItemResponse[];
@@ -67,6 +68,7 @@ export class TJapzK7kmResponse implements IJapzK7kmResponse {
67
68
  entityID: string = "";
68
69
  k7kmKmbm: string = "";
69
70
  k7kmKmmc: string = "";
71
+ parentCD: string = "";
70
72
 
71
73
  /**检测项目 */
72
74
  listItem: IJapzItemResponse[] = [];
@@ -38,6 +38,7 @@ export interface IJapzK8kmResponse {
38
38
  k8kmKmmc: string;
39
39
  /** 样品分类 */
40
40
  k0kmText: string;
41
+ parentCD: string;
41
42
 
42
43
  /**检测项目 */
43
44
  listItem: IJapzItemResponse[];
@@ -74,6 +75,7 @@ export class TJapzK8kmResponse implements IJapzK8kmResponse {
74
75
  k8kmKmbm: string = "";
75
76
  k8kmKmmc: string = "";
76
77
  k0kmText: string = "";
78
+ parentCD: string = "";
77
79
 
78
80
  /**检测项目 */
79
81
  listItem: IJapzItemResponse[] = [];
@@ -33,6 +33,7 @@ export interface IJapzK9kmResponse {
33
33
  k9kmKmbm: string;
34
34
  /** 方法依据 */
35
35
  k9kmKmmc: string;
36
+ parentCD: string;
36
37
 
37
38
  isActive: number;
38
39
  /**附件 */
@@ -68,6 +69,7 @@ export class TJapzK9kmResponse implements IJapzK9kmResponse {
68
69
  entityID: string = "";
69
70
  k9kmKmbm: string = "";
70
71
  k9kmKmmc: string = "";
72
+ parentCD: string = "";
71
73
  isActive: number = 0;
72
74
 
73
75
  listPath: TCore.IPathResponse[] = [];