@ningboyz/types 1.3.31 → 1.3.33

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.31",
4
+ "version": "1.3.33",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -30,3 +30,4 @@ export const CONST_HZNK_FYTQ_DATA_TYPE_T0_间接费用 = 1002;
30
30
 
31
31
  export const CONST_HZCB_MAIN_DATA_TYPE_TO_基地管理 = 1001
32
32
  export const CONST_HZCB_MAIN_DATA_TYPE_TO_建设管理 = 1002
33
+ export const CONST_HZCB_MAIN_DATA_TYPE_TO_项目验收 = 1003
@@ -51,6 +51,10 @@ export interface IHzcbMainResponse {
51
51
  hzcbDdid: number;
52
52
  /** 项目性质 */
53
53
  hzcbXmxz: number;
54
+ /** 项目性质文本 */
55
+ xmxzText: string;
56
+ /** 项目类型文本 */
57
+ typeText: string;
54
58
  hzcbXmgm: number;
55
59
  hzcbFglx: number;
56
60
  outMoney: number;
@@ -130,6 +134,8 @@ export interface IHzcbMainResponse {
130
134
  }
131
135
 
132
136
  export class THzcbMainResponse implements IHzcbMainResponse {
137
+ xmxzText: string = "";
138
+ typeText: string = "";
133
139
  whoBuild: number = 0;
134
140
  userIndx: number = 0;
135
141
  hzcbIndx: number = 0;
@@ -73,6 +73,8 @@ export interface IHznjNotiResponse {
73
73
  userGUID: string;
74
74
  flowMain: number;
75
75
  flowNode: number;
76
+ /**附件 */
77
+ listPath: TCore.IPathResponse[];
76
78
 
77
79
  /**任务通知.拆分 */
78
80
  listBill: THznj.IHznjNotiBillResponse[];
@@ -148,6 +150,8 @@ export class THznjNotiResponse implements IHznjNotiResponse {
148
150
  listCJBM: TCore.IDeptResponse[] = [];
149
151
  listFrom: THznj.IHznjXmjjResponse[] = [];
150
152
 
153
+ listPath: TCore.IPathResponse[] = [];
154
+
151
155
  constructor(data: Partial<IHznjNotiResponse> = {}) {
152
156
  if (data) {
153
157
  _.merge(this, _.pick(data, Object.keys(this)));