@ningboyz/types 1.5.61 → 1.5.63

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.5.61",
4
+ "version": "1.5.63",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -0,0 +1,53 @@
1
+ export interface ICardDataBillResponse {
2
+ whoBuild: number;
3
+ userIndx: number;
4
+ dataIndx: number;
5
+ idEntity: number;
6
+ parentID: number;
7
+ dataLevl: number;
8
+ dataStat: number;
9
+ dataOrdr: number;
10
+ dataDate: number;
11
+ dataTime: number;
12
+ dataHide: number;
13
+ dataFrom: number;
14
+ createBy: string;
15
+ createAt: number;
16
+ updateBy: string;
17
+ updateAt: number;
18
+ deleteBy: string;
19
+ deleteAt: number;
20
+ queuesBy: number;
21
+ billStat: number;
22
+ dictMain: number;
23
+ dictText: string;
24
+ dictUses: string;
25
+ dictMemo: string;
26
+ }
27
+
28
+ export class TCardDataBillResponse implements ICardDataBillResponse {
29
+ whoBuild: number = 0;
30
+ userIndx: number = 0;
31
+ dataIndx: number = 0;
32
+ idEntity: number = 0;
33
+ parentID: number = 0;
34
+ dataLevl: number = 0;
35
+ dataStat: number = 0;
36
+ dataOrdr: number = 0;
37
+ dataDate: number = 0;
38
+ dataTime: number = 0;
39
+ dataHide: number = 0;
40
+ dataFrom: number = 0;
41
+ createBy: string = "";
42
+ createAt: number = 0;
43
+ updateBy: string = "";
44
+ updateAt: number = 0;
45
+ deleteBy: string = "";
46
+ deleteAt: number = 0;
47
+ queuesBy: number = 0;
48
+ billStat: number = 0;
49
+ dictMain: number = 0;
50
+ dictText: string = "";
51
+ dictUses: string = "";
52
+ dictMemo: string = "";
53
+ }
@@ -4,8 +4,9 @@ import _ from "lodash";
4
4
  import { IPathResponse } from "../core/IPathResponse";
5
5
  import { TFlowDataResponse } from "../flow/IFlowDataResponse";
6
6
  import * as Const from "../const";
7
- import {TCore, TStim} from "../index.ts";
7
+ import { TCore, TStim } from "../index.ts";
8
8
  import { IMyoaMainResponse } from "../myoa/IMyoaMainResponse.ts";
9
+ import { ICardDataBillResponse } from "./ICardDataBillResponse.ts";
9
10
  /**
10
11
  车辆保险:dataType=1加001,使用单位(unitDict),投保单位(dddwText),生效日期(handleAt),到期日期(autoBxrq)
11
12
  车辆加油:dataType=1002,加油日期(handleAt),油油号(字典)(autoJyyh),加油容量(nowCount)
@@ -120,6 +121,8 @@ export interface IDataResponse {
120
121
  listLock: IDataResponse[];
121
122
  /**关联myoa */
122
123
  listMyoa: IMyoaMainResponse[];
124
+ /**bill */
125
+ listBill: ICardDataBillResponse[];
123
126
 
124
127
  //#虚拟字段
125
128
  ylcs: number; //#月里程数
@@ -258,6 +261,7 @@ export class TDataResponse implements Type {
258
261
  listLock: IDataResponse[] = [];
259
262
 
260
263
  listMyoa: IMyoaMainResponse[] = [];
264
+ listBill: ICardDataBillResponse[] = [];
261
265
 
262
266
  //虚拟字段
263
267
  ylcs: number = 0;
@@ -142,6 +142,7 @@ export interface IHzcbMainResponse {
142
142
  hzcbCoverURL: string;
143
143
  /** 送审/审核时间 */
144
144
  lastTime: number;
145
+ hzcbMain: number;
145
146
 
146
147
  /** 附件 */
147
148
  listPath: TCore.IPathResponse[];
@@ -269,6 +270,7 @@ export class THzcbMainResponse implements Type {
269
270
  hzcbCoverURL: string = "";
270
271
  /** 送审/审核时间 */
271
272
  lastTime: number = 0;
273
+ hzcbMain: number = 0;
272
274
 
273
275
  listPath: TCore.IPathResponse[] = [];
274
276
  listZJLY: THzcb.IHzcbZjlyResponse[] = [];