@ningboyz/types 1.3.177 → 1.3.179
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
|
@@ -172,6 +172,7 @@ export const CONST_SYS_TYPEU_上城财政_项目类别 = "上城财政-项目类
|
|
|
172
172
|
export const CONST_SYS_TYPEU_上城财政_资金性质 = "上城财政-资金性质";
|
|
173
173
|
export const CONST_SYS_TYPEU_上城财政_支付方式 = "上城财政-支付方式";
|
|
174
174
|
export const CONST_SYS_TYPEU_上城财政_预算级次 = "上城财政-预算级次";
|
|
175
|
+
export const CONST_SYS_TYPEU_预算资金_科室类型 = "预算资金-科室类型";
|
|
175
176
|
|
|
176
177
|
export const CONST_SYS_TYPEU_房产管理_使用状态 = "房产管理-使用状态";
|
|
177
178
|
export const CONST_SYS_TYPEU_房产管理_房产类型 = "房产管理-房产类型";
|
|
@@ -234,6 +235,7 @@ export const CONST_SYS_TYPEU_CXTD_KHDC = "创新团队-考核等次";
|
|
|
234
235
|
export const CONST_SYS_TYPEU_JDGL_KYJXZT = "基地管理-科研绩效状态";
|
|
235
236
|
export const CONST_SYS_TYPEU_JDGL_SQLX = "基地管理-申请类型";
|
|
236
237
|
export const CONST_SYS_TYPEU_JDGL_TDSSLX = "基地管理-土地设施类型";
|
|
238
|
+
export const CONST_SYS_TYPEU_JDGL_XMZL = "基地管理-项目种类";
|
|
237
239
|
|
|
238
240
|
// 实验室管理
|
|
239
241
|
export const CONST_SYS_TYPEU_仪器登记_当前状态 = "仪器登记-当前状态";
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { construct, destruct } from "@aximario/json-tree";
|
|
2
|
+
import _ from "lodash";
|
|
2
3
|
import type { IBaseResponse } from "../base/IBaseResponse";
|
|
3
4
|
import { TBaseResponse } from "../base/IBaseResponse";
|
|
4
|
-
import type { IDictResponse } from "./IDictResponse";
|
|
5
|
-
import _ from "lodash";
|
|
6
5
|
import { TCore } from "../index.ts";
|
|
6
|
+
import type { IDictResponse } from "./IDictResponse";
|
|
7
|
+
import { IUserLiteResponse } from "./IUserLiteResponse.ts";
|
|
7
8
|
|
|
8
9
|
export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
9
10
|
codeFull: string;
|
|
@@ -65,9 +66,11 @@ export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
|
65
66
|
deptPara: string;
|
|
66
67
|
|
|
67
68
|
/** 部门类型 */
|
|
68
|
-
listBMLX:
|
|
69
|
+
listBMLX: IDictResponse[];
|
|
69
70
|
/** 部门类型(新) */
|
|
70
|
-
listType:
|
|
71
|
+
listType: IDictResponse[];
|
|
72
|
+
/** 部门用户 */
|
|
73
|
+
listUser: IUserLiteResponse[];
|
|
71
74
|
}
|
|
72
75
|
|
|
73
76
|
export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDeptResponse {
|
|
@@ -121,9 +124,12 @@ export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDept
|
|
|
121
124
|
k4kmKmbm: string = "";
|
|
122
125
|
k1kmKmbm: string = "";
|
|
123
126
|
|
|
127
|
+
/** 部门类型 */
|
|
124
128
|
listBMLX: IDictResponse[] = [];
|
|
125
129
|
/** 部门类型(新) */
|
|
126
130
|
listType: IDictResponse[] = [];
|
|
131
|
+
/** 部门用户 */
|
|
132
|
+
listUser: IUserLiteResponse[] = [];
|
|
127
133
|
|
|
128
134
|
constructor(data: any = {}) {
|
|
129
135
|
super();
|
|
@@ -49,6 +49,11 @@ export interface IHznjZblyItemResponse {
|
|
|
49
49
|
xmsyCode: string;
|
|
50
50
|
/**制备样品编号 */
|
|
51
51
|
fromItemCode: string;
|
|
52
|
+
|
|
53
|
+
/**制备样品正样编号 */
|
|
54
|
+
fromMainCode: string;
|
|
55
|
+
/**制备样品副样编号 */
|
|
56
|
+
fromMinoCode: string;
|
|
52
57
|
}
|
|
53
58
|
|
|
54
59
|
export class THznjZblyItemResponse implements IHznjZblyItemResponse {
|
|
@@ -94,6 +99,10 @@ export class THznjZblyItemResponse implements IHznjZblyItemResponse {
|
|
|
94
99
|
xmsyCode: string = "";
|
|
95
100
|
/**制备样品编号 */
|
|
96
101
|
fromItemCode: string = "";
|
|
102
|
+
/**制备样品正样编号 */
|
|
103
|
+
fromMainCode: string = "";
|
|
104
|
+
/**制备样品副样编号 */
|
|
105
|
+
fromMinoCode: string = "";
|
|
97
106
|
|
|
98
107
|
constructor(data: Partial<IHznjZblyItemResponse> = {}) {
|
|
99
108
|
if (data) {
|
|
@@ -49,6 +49,10 @@ export interface IHznjZbthItemResponse {
|
|
|
49
49
|
xmsyCode: string;
|
|
50
50
|
/**制备样品编号 */
|
|
51
51
|
fromItemCode: string;
|
|
52
|
+
/**制备样品正样编号 */
|
|
53
|
+
fromMainCode: string;
|
|
54
|
+
/**制备样品副样编号 */
|
|
55
|
+
fromMinoCode: string;
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
@@ -94,4 +98,8 @@ export class THznjZbthItemResponse implements IHznjZbthItemResponse {
|
|
|
94
98
|
/**样品编号 */
|
|
95
99
|
xmsyCode: string = "";
|
|
96
100
|
fromItemCode: string = "";
|
|
101
|
+
/**制备样品正样编号 */
|
|
102
|
+
fromMainCode: string = "";
|
|
103
|
+
/**制备样品副样编号 */
|
|
104
|
+
fromMinoCode: string = "";
|
|
97
105
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
2
|
-
import * as Const from "../const";
|
|
3
1
|
import _ from "lodash";
|
|
4
|
-
import
|
|
5
|
-
import { IDeptResponse, IPathResponse, IUnitResponse } from "../core";
|
|
2
|
+
import * as Const from "../const";
|
|
3
|
+
import { IDeptResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
4
|
+
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
6
5
|
import { IGamsItemResponse } from "../gams";
|
|
6
|
+
import { IZbzbZbflResponse } from "./index";
|
|
7
7
|
|
|
8
8
|
export interface IZbzdMainResponse {
|
|
9
9
|
whoBuild: number;
|
|
@@ -209,6 +209,10 @@ export interface IZbzdMainResponse {
|
|
|
209
209
|
* 资金来源
|
|
210
210
|
*/
|
|
211
211
|
listZJLY: IGamsItemResponse[];
|
|
212
|
+
/**
|
|
213
|
+
* 审核用户
|
|
214
|
+
*/
|
|
215
|
+
listUserWithFlow: IUserLiteResponse[];
|
|
212
216
|
}
|
|
213
217
|
|
|
214
218
|
export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
@@ -321,6 +325,7 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
321
325
|
listYSDW: IUnitResponse[] = [];
|
|
322
326
|
listYSBM: IDeptResponse[] = [];
|
|
323
327
|
listZJLY: IGamsItemResponse[] = [];
|
|
328
|
+
listUserWithFlow: IUserLiteResponse[] = [];
|
|
324
329
|
|
|
325
330
|
constructor(card: any = {}) {
|
|
326
331
|
if (card) {
|