@ningboyz/types 1.6.186 → 1.6.188

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.6.186",
4
+ "version": "1.6.188",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -75,6 +75,7 @@ export interface IUserLiteResponse {
75
75
  fromDataType: number;
76
76
  fromDataUses: string;
77
77
  fromHeavyVal: number;
78
+ heavyMul: number;
78
79
  zbdwText: string;
79
80
  /**数据分类文本 (作者|通讯作者) */
80
81
  dataUses: string;
@@ -165,6 +166,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
165
166
  fromDataType: number = 0;
166
167
  fromDataUses: string = "";
167
168
  fromHeavyVal: number = 0;
169
+ heavyMul: number = 0;
168
170
  zbdwText: string = "";
169
171
  /**数据分类文本 (作者|通讯作者) */
170
172
  dataUses: string = "";
@@ -0,0 +1,71 @@
1
+ export interface IMyoaBillResponse {
2
+ whoBuild: number;
3
+ userIndx: number;
4
+ billIndx: number;
5
+ myoaMain: number;
6
+ dataStat: number;
7
+ dataHide: number;
8
+ dataOrdr: number;
9
+ dataFrom: number;
10
+ dataDate: number;
11
+ dataTime: number;
12
+ createBy: string;
13
+ createAt: number;
14
+ updateBy: string;
15
+ updateAt: number;
16
+ deleteBy: string;
17
+ deleteAt: number;
18
+ queuesBy: number;
19
+ /** 人员职务类别 */
20
+ dictMain: number;
21
+ /** 人员职务类别 */
22
+ dictText: string;
23
+ /** 申请前员额数 */
24
+ hadCount: number;
25
+ /** 实有人数 */
26
+ nowCount: number;
27
+ /** 本次员额数增减数 */
28
+ aplCount: number;
29
+ /** 调整后员额数 */
30
+ afterApl: number;
31
+ /** 到岗人员 */
32
+ userText: string;
33
+ /** 到岗人员[{userIndx:1001},{userIndx:1002}] */
34
+ userBlob: string;
35
+ }
36
+
37
+ export class TMyoaBillResponse implements IMyoaBillResponse {
38
+ whoBuild: number = 0;
39
+ userIndx: number = 0;
40
+ billIndx: number = 0;
41
+ myoaMain: number = 0;
42
+ dataStat: number = 0;
43
+ dataHide: number = 0;
44
+ dataOrdr: number = 0;
45
+ dataFrom: number = 0;
46
+ dataDate: number = 0;
47
+ dataTime: number = 0;
48
+ createBy: string = "";
49
+ createAt: number = 0;
50
+ updateBy: string = "";
51
+ updateAt: number = 0;
52
+ deleteBy: string = "";
53
+ deleteAt: number = 0;
54
+ queuesBy: number = 0;
55
+ /** 人员职务类别 */
56
+ dictMain: number = 0;
57
+ /** 人员职务类别 */
58
+ dictText: string = "";
59
+ /** 申请前员额数 */
60
+ hadCount: number = 0;
61
+ /** 实有人数 */
62
+ nowCount: number = 0;
63
+ /** 本次员额数增减数 */
64
+ aplCount: number = 0;
65
+ /** 调整后员额数 */
66
+ afterApl: number = 0;
67
+ /** 到岗人员 */
68
+ userText: string = "";
69
+ /** 到岗人员[{userIndx:1001},{userIndx:1002}] */
70
+ userBlob: string = "";
71
+ }
@@ -9,6 +9,7 @@ import { TFlowDataResponse } from "../flow/IFlowDataResponse";
9
9
  import { TCore, TStim } from "../index.ts";
10
10
  import { IYzcgMainResponse } from "../yzcg/IYzcgMainResponse";
11
11
  import { IYzhtMainResponse } from "../yzht/IYzhtMainResponse";
12
+ import { IMyoaBillResponse } from "./IMyoaBillResponse.ts";
12
13
  import { IMyoaCashResponse } from "./IMyoaCashResponse";
13
14
  import { IMyoaPGDWResponse } from "./IMyoaPGDWResponse";
14
15
  import { IMyoaRoomResponse, TMyoaRoomResponse } from "./IMyoaRoomResponse.ts";
@@ -144,7 +145,7 @@ export interface IMyoaMainResponse {
144
145
  /**
145
146
  * 0:用车 1锁车
146
147
  * */
147
- isLocked : number;
148
+ isLocked: number;
148
149
  /**
149
150
  * 公物仓
150
151
  * */
@@ -203,6 +204,7 @@ export interface IMyoaMainResponse {
203
204
  listDLDW: IUserLiteResponse[];
204
205
  listPGDW: IMyoaPGDWResponse[]; // 评审审批时的评审代表
205
206
  listType: TCore.IDictResponse[];
207
+ listBill: IMyoaBillResponse[];
206
208
 
207
209
  wContact: string; // 联系人
208
210
  dContact: string; // 联系方式
@@ -393,7 +395,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
393
395
  /**
394
396
  * 0:用车 1锁车
395
397
  * */
396
- isLocked : number = 0;
398
+ isLocked: number = 0;
397
399
 
398
400
  laidMain: number = 0;
399
401
  laidText: string = "";
@@ -420,6 +422,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
420
422
  listDLDW: IUserLiteResponse[] = [];
421
423
  listPGDW: IMyoaPGDWResponse[] = []; // 评审审批时的评审代表
422
424
  listType: TCore.IDictResponse[] = [];
425
+ listBill: IMyoaBillResponse[] = [];
423
426
 
424
427
  //虚拟字段
425
428
  detailId: number = 0;
package/src/myoa/index.ts CHANGED
@@ -1,6 +1,7 @@
1
- import { IMyoaMainResponse, TMyoaMainResponse } from "./IMyoaMainResponse";
1
+ import { IMyoaBillResponse, TMyoaBillResponse } from "./IMyoaBillResponse";
2
2
  import { IMyoaCashResponse, TMyoaCashResponse } from "./IMyoaCashResponse";
3
+ import { IMyoaMainResponse, TMyoaMainResponse } from "./IMyoaMainResponse";
3
4
  import { IMyoaPGDWResponse, TMyoaPGDWResponse } from "./IMyoaPGDWResponse";
4
5
  import { IMyoaRoomResponse, TMyoaRoomResponse } from "./IMyoaRoomResponse";
5
6
 
6
- export { type IMyoaMainResponse, type IMyoaCashResponse, type IMyoaPGDWResponse, type IMyoaRoomResponse, TMyoaMainResponse, TMyoaCashResponse, TMyoaPGDWResponse, TMyoaRoomResponse };
7
+ export { TMyoaBillResponse, TMyoaCashResponse, TMyoaMainResponse, TMyoaPGDWResponse, TMyoaRoomResponse, type IMyoaBillResponse, type IMyoaCashResponse, type IMyoaMainResponse, type IMyoaPGDWResponse, type IMyoaRoomResponse };