@ningboyz/types 1.4.35 → 1.4.36

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.35",
4
+ "version": "1.4.36",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -112,6 +112,20 @@ export interface IHznkDataResponse {
112
112
  usrTitle: string;
113
113
  /**是否备案 0否 1是 */
114
114
  isRecorde: number;
115
+ /**导师ID */
116
+ profMain: number;
117
+ /**导师姓名 */
118
+ profName: string;
119
+ /**导师类型ID */
120
+ profType: number;
121
+ /**导师类型名称 */
122
+ profTypn: string;
123
+ /**培养学校 */
124
+ pyxxText: string;
125
+ /**培养学生 */
126
+ pyxsText: string;
127
+ /**任职时间 */
128
+ rzsjDate: number;
115
129
 
116
130
  /**字典1 */
117
131
  fromDic1: number;
@@ -236,6 +250,14 @@ export class THznkDataResponse implements IHznkDataResponse {
236
250
  /** 关联的项目indx */
237
251
  fromHznkMain: number = 0;
238
252
 
253
+ profMain: number = 0;
254
+ profName: string = "";
255
+ profType: number = 0;
256
+ profTypn: string = "";
257
+ pyxxText: string = "";
258
+ pyxsText: string = "";
259
+ rzsjDate: number = 0;
260
+
239
261
  /**是否备案 0否 1是 */
240
262
  isRecorde: number = 0;
241
263
  /**关联的知识产权 */
@@ -58,8 +58,11 @@ export interface IHznkMainResponse {
58
58
  baseMemo: string;
59
59
  /**项目类型 */
60
60
  baseType: number;
61
+ typeText: string;
61
62
  /**项目层级 */
62
63
  baseMode: number;
64
+ levlText: string;
65
+
63
66
  baseFrom: number;
64
67
  /**项目来源 */
65
68
  fromText: string;
@@ -104,7 +107,7 @@ export interface IHznkMainResponse {
104
107
  lastMemo: string;
105
108
  userName: string;
106
109
  userGUID: string;
107
-
110
+
108
111
  /**附件 */
109
112
  listPath: TCore.IPathResponse[];
110
113
  /**内部用户 */
@@ -117,6 +120,7 @@ export interface IHznkMainResponse {
117
120
  listRWZB: THznk.IHznkMainRwzbResponse[];
118
121
  /** 项目下关联的业务 */
119
122
  listData: THznk.IHznkDataResponse[];
123
+
120
124
  }
121
125
 
122
126
  export class THznkMainResponse implements IHznkMainResponse {
@@ -198,6 +202,9 @@ export class THznkMainResponse implements IHznkMainResponse {
198
202
  lastMemo: string = "";
199
203
  userName: string = "";
200
204
  userGUID: string = "";
205
+
206
+ typeText: string = "";
207
+ levlText: string = "";
201
208
 
202
209
  listPath: TCore.IPathResponse[] = [];
203
210
  listNBYH: TCore.IUserLiteResponse[] = [];