@ningboyz/types 1.4.190 → 1.4.192

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.4.190",
4
+ "version": "1.4.192",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -65,6 +65,10 @@ export interface ICardRoomResponse {
65
65
  cardName: string;
66
66
  /** 资产编码 */
67
67
  cardCode: string;
68
+ /** 自然村 */
69
+ fromRoomCode: string;
70
+ /** 门牌号 */
71
+ fromRoomAddr: string;
68
72
  /** 建筑面积 */
69
73
  buldJzmj: number;
70
74
  /** 所在经度 */
@@ -181,6 +185,10 @@ export class TCardRoomResponse implements ICardRoomResponse {
181
185
  cardName: string = "";
182
186
  /** 资产编码 */
183
187
  cardCode: string = "";
188
+ /** 自然村 */
189
+ fromRoomCode: string = "";
190
+ /** 门牌号 */
191
+ fromRoomAddr: string = "";
184
192
  /** 建筑面积 */
185
193
  buldJzmj: number = 0;
186
194
  /** 所在经度 */
@@ -1,16 +1,16 @@
1
- import * as Const from "../const";
2
- import { IPathResponse } from "../core/IPathResponse";
3
- import { IYzhtMainResponse } from "../yzht/IYzhtMainResponse";
1
+ import _ from "lodash";
4
2
  import { ICardMainResponse } from "../card/ICardMainResponse";
3
+ import * as Const from "../const";
5
4
  import { IDeptResponse } from "../core/IDeptResponse";
5
+ import { IPathResponse } from "../core/IPathResponse";
6
6
  import { IUserLiteResponse } from "../core/IUserLiteResponse";
7
7
  import { IUserResponse } from "../core/IUserResponse";
8
8
  import { TFlowDataResponse } from "../flow/IFlowDataResponse";
9
+ import { TCore, TStim } from "../index.ts";
9
10
  import { IYzcgMainResponse } from "../yzcg/IYzcgMainResponse";
11
+ import { IYzhtMainResponse } from "../yzht/IYzhtMainResponse";
10
12
  import { IMyoaCashResponse } from "./IMyoaCashResponse";
11
13
  import { IMyoaPGDWResponse } from "./IMyoaPGDWResponse";
12
- import _ from "lodash";
13
- import { TCore, TStim } from "../index.ts";
14
14
  import { IMyoaRoomResponse, TMyoaRoomResponse } from "./IMyoaRoomResponse.ts";
15
15
 
16
16
  export interface IMyoaMainResponse {
@@ -47,7 +47,7 @@ export interface IMyoaMainResponse {
47
47
  unitMain: number;
48
48
  unitNamf: string;
49
49
  deptMain: number;
50
- dictMain: number
50
+ dictMain: number;
51
51
  /** 会议室间歇时间 */
52
52
  interval: number;
53
53
  startOut: number; //#用车申请.出车时间 YYYYMMDDHHMM
@@ -62,7 +62,7 @@ export interface IMyoaMainResponse {
62
62
  sourceDW: string;
63
63
  flowText: string;
64
64
  flowUndo: number;
65
-
65
+
66
66
  varySize: number; //#是否变更;(默认值:0;做过变更则标记1);
67
67
 
68
68
  outMoney: number;
@@ -102,6 +102,9 @@ export interface IMyoaMainResponse {
102
102
  userName: string;
103
103
  userMain: number;
104
104
 
105
+ /** 流程节点判断 */
106
+ flowVal1: number;
107
+
105
108
  authStat: number; //#取钥状态
106
109
  autoCpbh: string; //#车牌号码
107
110
  authDate: number; //#取钥时间.YYYYMMDDHHMMSS
@@ -224,7 +227,7 @@ export interface IMyoaMainResponse {
224
227
  dzyzQife: number;
225
228
  }
226
229
 
227
- type Type = IMyoaMainResponse
230
+ type Type = IMyoaMainResponse;
228
231
  export class TMyoaMainResponse implements Type {
229
232
  typeName: string = "TMyoaMainResponse";
230
233
  whoBuild: number = 0;
@@ -324,6 +327,9 @@ export class TMyoaMainResponse implements Type {
324
327
  userName: string = "";
325
328
  userMain: number = 0;
326
329
 
330
+ /** 流程节点判断 */
331
+ flowVal1: number = -1;
332
+
327
333
  /** 文件类型 */
328
334
  fileType: number = 0;
329
335
  fileText: string = "";
@@ -402,7 +408,7 @@ export class TMyoaMainResponse implements Type {
402
408
  //虚拟字段
403
409
  detailId: number = 0;
404
410
  cardMain: number = 0;
405
- fromCardIndx: number = 0
411
+ fromCardIndx: number = 0;
406
412
  /**
407
413
  * 用车判断审核人角色
408
414
  */
@@ -95,6 +95,10 @@ export interface INotiMainResponse {
95
95
  userFrom2: number;
96
96
  /** 分管领导.名称 */
97
97
  userFrom2Text: string;
98
+ /** 主办科室承办人.标识 */
99
+ userFrom3: number;
100
+ /** 主办科室承办人.名称 */
101
+ userFrom3Text: string;
98
102
 
99
103
  //from Flow
100
104
  flowMain: number;
@@ -337,6 +341,10 @@ export class TNotiMainResponse implements INotiMainResponse {
337
341
  userFrom2: number = 0;
338
342
  /** 分管领导.名称 */
339
343
  userFrom2Text: string = "";
344
+ /** 主办科室承办人.标识 */
345
+ userFrom3: number = 0;
346
+ /** 主办科室承办人.名称 */
347
+ userFrom3Text: string = "";
340
348
 
341
349
  //from Flow
342
350
  flowMain: number = 0;