@ningboyz/types 1.3.91 → 1.3.92
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
|
@@ -147,6 +147,8 @@ export interface IDataResponse {
|
|
|
147
147
|
cardSyfx: number;
|
|
148
148
|
/**使用方向 */
|
|
149
149
|
cardSyfxText: string;
|
|
150
|
+
/**关联资产单号 */
|
|
151
|
+
fromBillCode: string;
|
|
150
152
|
}
|
|
151
153
|
|
|
152
154
|
export class TDataResponse implements IDataResponse {
|
|
@@ -204,6 +206,8 @@ export class TDataResponse implements IDataResponse {
|
|
|
204
206
|
dataCont: string = "";
|
|
205
207
|
/**实验结果 */
|
|
206
208
|
dataRslt: string = "";
|
|
209
|
+
/**单号 */
|
|
210
|
+
billCode: string = "";
|
|
207
211
|
|
|
208
212
|
autoJyyh: number = 0;
|
|
209
213
|
autoBxrq: number = 0;
|
|
@@ -251,8 +255,8 @@ export class TDataResponse implements IDataResponse {
|
|
|
251
255
|
|
|
252
256
|
/**所属部门 */
|
|
253
257
|
cardDeptText: string = "";
|
|
254
|
-
|
|
255
|
-
|
|
258
|
+
/**关联资产单号 */
|
|
259
|
+
fromBillCode: string = "";
|
|
256
260
|
/**经办人 */
|
|
257
261
|
cardUser: number = 0;
|
|
258
262
|
/**存放地点 */
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { construct, destruct } from "@aximario/json-tree";
|
|
2
2
|
import _ from "lodash";
|
|
3
|
+
import { IPathResponse } from "../core";
|
|
3
4
|
import { TCore } from "../index.ts";
|
|
4
5
|
|
|
5
6
|
export interface IGblbResponse {
|
|
@@ -48,7 +49,6 @@ export interface IGblbResponse {
|
|
|
48
49
|
wtuiFormName: string;
|
|
49
50
|
children: IGblbResponse[];
|
|
50
51
|
hasChild: boolean;
|
|
51
|
-
|
|
52
52
|
/**附件 */
|
|
53
53
|
listPath: TCore.IPathResponse[];
|
|
54
54
|
}
|
|
@@ -17,6 +17,8 @@ export interface IDictResponseDictPara {
|
|
|
17
17
|
change: string[];
|
|
18
18
|
noChange: string[];
|
|
19
19
|
code: string;
|
|
20
|
+
/** 附件归属 */
|
|
21
|
+
pathType: string;
|
|
20
22
|
zcdbType: number; ///字典-资产调拨-单据类型 配置0, 为单位内,调拨只在同一个单位下进行,调拨到其他部门。配置1,为跨单位调拨。配置2,为跨部门调拨
|
|
21
23
|
/** 是否附件类型不判断必填 */
|
|
22
24
|
notRequiredPath: boolean;
|
|
@@ -42,6 +44,7 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
|
|
|
42
44
|
show: boolean = false;
|
|
43
45
|
gdzc: boolean = false;
|
|
44
46
|
change: string[] = [];
|
|
47
|
+
pathType: string = "";
|
|
45
48
|
noChange: string[] = [];
|
|
46
49
|
unused: number = 0;
|
|
47
50
|
used: number = 0;
|