@ningboyz/types 1.6.98 → 1.6.100
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
|
@@ -2,6 +2,7 @@ import _ from "lodash";
|
|
|
2
2
|
import { Const, TCore, TStim } from "..";
|
|
3
3
|
import { IDeptResponse, IDictResponse, ILaidResponse, IPathResponse, IUnitResponse, IUserLiteResponse } from "../core";
|
|
4
4
|
import { TFlowDataResponse } from "../flow";
|
|
5
|
+
import { IHzcbMainResponse } from "../hzcb";
|
|
5
6
|
import { ICardBookResponse } from "./ICardBookResponse";
|
|
6
7
|
import { ICardDataResponse } from "./ICardDataResponse";
|
|
7
8
|
import { ICardFromResponse } from "./ICardFromResponse";
|
|
@@ -380,6 +381,11 @@ export interface ICardMainResponse {
|
|
|
380
381
|
/** 管理状态(1:在管;0:历史) */
|
|
381
382
|
cardGlzt: number;
|
|
382
383
|
|
|
384
|
+
/** 项目编码 */
|
|
385
|
+
hzcbCode: string;
|
|
386
|
+
/** 项目名称 */
|
|
387
|
+
hzcbName: string;
|
|
388
|
+
|
|
383
389
|
fromBillIndx: number;
|
|
384
390
|
|
|
385
391
|
/** 单据状态 */
|
|
@@ -447,6 +453,7 @@ export interface ICardMainResponse {
|
|
|
447
453
|
listUnit: IUnitResponse[];
|
|
448
454
|
listDept: IDeptResponse[];
|
|
449
455
|
listLaid: ILaidResponse[];
|
|
456
|
+
listHzcb: IHzcbMainResponse[];
|
|
450
457
|
/** 相关附件 */
|
|
451
458
|
listPath: IPathResponse[];
|
|
452
459
|
/** 定点单位(司机)*/
|
|
@@ -698,6 +705,9 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
698
705
|
|
|
699
706
|
cardGlzt: number = 1;
|
|
700
707
|
|
|
708
|
+
hzcbCode: string = "";
|
|
709
|
+
hzcbName: string = "";
|
|
710
|
+
|
|
701
711
|
lastDate: number = 0;
|
|
702
712
|
lastTime: number = 0;
|
|
703
713
|
flowMain: number = 0;
|
|
@@ -740,6 +750,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
740
750
|
listUnit: IUnitResponse[] = [];
|
|
741
751
|
listDept: IDeptResponse[] = [];
|
|
742
752
|
listLaid: ILaidResponse[] = [];
|
|
753
|
+
listHzcb: IHzcbMainResponse[] = [];
|
|
743
754
|
listPath: IPathResponse[] = [];
|
|
744
755
|
listDDDW: IUserLiteResponse[] = [];
|
|
745
756
|
listBook: ICardBookResponse[] = [];
|
|
@@ -69,6 +69,7 @@ export interface IWtuiUserCnfgResponse {
|
|
|
69
69
|
cnfgPara: string;
|
|
70
70
|
unitMain: number;
|
|
71
71
|
unitText: string;
|
|
72
|
+
cnfgFrom: string;
|
|
72
73
|
billMain: number;
|
|
73
74
|
colWidth: IWtuiColWidthResponse[];
|
|
74
75
|
listUnit: IUnitResponse[];
|
|
@@ -116,6 +117,7 @@ export class TWtuiUserCnfgResponse implements IWtuiUserCnfgResponse {
|
|
|
116
117
|
cnfgPara: string = "";
|
|
117
118
|
unitMain: number = 0;
|
|
118
119
|
unitText: string = "";
|
|
120
|
+
cnfgFrom: string = "";
|
|
119
121
|
billMain: number = 0;
|
|
120
122
|
colWidth: TWtuiColWidthResponse[] = [];
|
|
121
123
|
listUnit: IUnitResponse[] = [];
|