@ningboyz/types 1.3.188 → 1.3.189

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.3.188",
4
+ "version": "1.3.189",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -29,7 +29,7 @@ import * as GlpzMode from "./const_glpz_mode";
29
29
  import * as UserAcnoDataType from "./const_user_acno";
30
30
  import * as TabsStat from "./const_stat";
31
31
  import * as Vary from "./const_vary";
32
- import * as ErrorKey from "./const_ error_key";
32
+ import * as ErrorKey from "./const_error_key";
33
33
  import * as PageMode from "./const_page_mode";
34
34
 
35
35
  export {
@@ -0,0 +1,55 @@
1
+ export interface IFlowBillResponse {
2
+ whoBuild: number; //#
3
+ userIndx: number; //#
4
+ billMain: number; //#单据标识
5
+ billCode: string;
6
+ billUses: string; //#申请事由
7
+ billStat: number;
8
+ billMemo: string;
9
+ entityID: string; //#唯一标识
10
+ vitualID: number;
11
+ parentID: number;
12
+ parentCD: string;
13
+ sourceND: number;
14
+ menuUUID: string; //#功能菜单
15
+ menuName: string; //#功能菜单
16
+ unitMain: number;
17
+ unitText: string;
18
+ deptMain: number;
19
+ deptText: string;
20
+ mastName: string; //#制单用户
21
+ notiTime: number; //#抄送时间
22
+ createAt: number;
23
+ createBy: string;
24
+ userMain: number;
25
+ tablFrom: string;
26
+ statFrom: string;
27
+ }
28
+
29
+ export class TFlowBillResponse implements IFlowBillResponse {
30
+ whoBuild: number = 0; //#
31
+ userIndx: number = 0; //#
32
+ billMain: number = 0; //#单据标识
33
+ billCode: string = "";
34
+ billUses: string = ""; //#申请事由
35
+ billStat: number = 0;
36
+ billMemo: string = "";
37
+ entityID: string = ""; //#唯一标识
38
+ vitualID: number = 0;
39
+ parentID: number = 0;
40
+ parentCD: string = "";
41
+ sourceND: number = 0;
42
+ menuUUID: string = ""; //#功能菜单
43
+ menuName: string = ""; //#功能菜单
44
+ unitMain: number = 0;
45
+ unitText: string = "";
46
+ deptMain: number = 0;
47
+ deptText: string = "";
48
+ mastName: string = ""; //#制单用户
49
+ notiTime: number = 0; //#抄送时间
50
+ createAt: number = 0;
51
+ createBy: string = "";
52
+ userMain: number = 0;
53
+ tablFrom: string = "";
54
+ statFrom: string = "";
55
+ }
package/src/flow/index.ts CHANGED
@@ -6,6 +6,7 @@ import { IFlowTypeResponse, TFlowTypeResponse } from "./IFlowTypeResponse";
6
6
  import { IFlowCnfgResponse, TFlowCnfgResponse } from "./IFlowCnfgResponse";
7
7
  import { IFlowDataResponse, TFlowDataResponse } from "./IFlowDataResponse";
8
8
  import { IFlowUservoidResponse, TFlowUservoidResponse } from "./IFlowUservoidResponse";
9
+ import { IFlowBillResponse, TFlowBillResponse } from "./IFlowBillResponse";
9
10
 
10
11
  export {
11
12
  type IFlowCnfgResponse,
@@ -16,6 +17,7 @@ export {
16
17
  type IFlowTypeResponse,
17
18
  type IFlowUservoidResponse,
18
19
  type IFlowVoidResponse,
20
+ type IFlowBillResponse,
19
21
  TFlowCnfgResponse,
20
22
  TFlowDataResponse,
21
23
  TFlowDutyResponse,
@@ -23,5 +25,6 @@ export {
23
25
  TFlowNodeResponse,
24
26
  TFlowTypeResponse,
25
27
  TFlowUservoidResponse,
26
- TFlowVoidResponse
28
+ TFlowVoidResponse,
29
+ TFlowBillResponse
27
30
  };