@ningboyz/types 1.1.121 → 1.1.123

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.1.121",
3
+ "version": "1.1.123",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -39,6 +39,8 @@ export interface IGztbMainResponse {
39
39
  sourceDH: number;
40
40
  gztbMemo: string;
41
41
  onStatus: number;
42
+ /** 表体对象,1:单位,2:部门,3:人员,4:字典 */
43
+ bodyFill: number;
42
44
 
43
45
  taskMain: number;
44
46
  taskName: string;
@@ -52,6 +54,7 @@ export interface IGztbMainResponse {
52
54
  listYSBM: IDeptResponse[];
53
55
  listTabl: ITablMainResponse[];
54
56
  listGZZD: IGzzdMainResponse[];
57
+ readUnit: IUnitResponse[];
55
58
  }
56
59
 
57
60
  export class TGztbMainResponse implements IGztbMainResponse {
@@ -89,6 +92,7 @@ export class TGztbMainResponse implements IGztbMainResponse {
89
92
  sourceDH: number = 0;
90
93
  gztbMemo: string = "";
91
94
  onStatus: number = 0;
95
+ bodyFill: number = 0;
92
96
 
93
97
  taskMain: number = 0;
94
98
  taskName: string = "";
@@ -102,4 +106,5 @@ export class TGztbMainResponse implements IGztbMainResponse {
102
106
  listYSBM: IDeptResponse[] = [];
103
107
  listTabl: ITablMainResponse[] = [];
104
108
  listGZZD: IGzzdMainResponse[] = [];
109
+ readUnit: IUnitResponse[] = [];
105
110
  }
@@ -0,0 +1,48 @@
1
+
2
+ export interface ICellEditResponse {
3
+ whoBuild: number;
4
+ userIndx: number;
5
+ idEntity: number;
6
+ gzzdMain: number;
7
+ dataStat: number;
8
+ dataHide: number;
9
+ dataOrdr: number;
10
+ dataFrom: number;
11
+ dataDate: number;
12
+ dataTime: number;
13
+ createBy: string;
14
+ createAt: number;
15
+ updateBy: string;
16
+ updateAt: number;
17
+ deleteBy: string;
18
+ deleteAt: number;
19
+ queuesBy: number;
20
+ userMain: number;
21
+ dictMain: number;
22
+ colIndex: number;
23
+ cellText: string;
24
+ }
25
+
26
+ export class TCellEditResponse implements ICellEditResponse {
27
+ whoBuild: number = 0;
28
+ userIndx: number = 0;
29
+ idEntity: number = 0;
30
+ gzzdMain: number = 0;
31
+ dataStat: number = 0;
32
+ dataHide: number = 0;
33
+ dataOrdr: number = 0;
34
+ dataFrom: number = 0;
35
+ dataDate: number = 0;
36
+ dataTime: number = 0;
37
+ createBy: string = '';
38
+ createAt: number = 0;
39
+ updateBy: string = '';
40
+ updateAt: number = 0;
41
+ deleteBy: string = '';
42
+ deleteAt: number = 0;
43
+ queuesBy: number = 0;
44
+ userMain: number = 0;
45
+ dictMain: number = 0;
46
+ colIndex: number = 0;
47
+ cellText: string = '';
48
+ }
@@ -1,6 +1,8 @@
1
+ import _ from "lodash";
2
+ import { IUnitResponse } from "../core";
1
3
  import { TFlowDataResponse } from "../flow/IFlowDataResponse";
4
+ import { ICellEditResponse } from "./ICellEditResponse";
2
5
  import { IGzzdBillResponse } from "./IGzzdBillResponse";
3
- import _ from "lodash";
4
6
 
5
7
  export interface IGzzdMainResponse {
6
8
  whoBuild: number;
@@ -44,6 +46,8 @@ export interface IGzzdMainResponse {
44
46
  flowUndo: number;
45
47
  flowText: string;
46
48
  gzzdMemo: string;
49
+ /** 表体对象,1:单位,2:部门,3:人员,4:字典 */
50
+ bodyFill: number;
47
51
 
48
52
  menuUUID: string;
49
53
  gzzdCode: string; //#工资单号
@@ -85,7 +89,9 @@ export interface IGzzdMainResponse {
85
89
  fromGzjgQueuesBy: number; // 工资结构按照Y中的顺序进行排序
86
90
 
87
91
  taskPara: string;
88
- listBill: Array<IGzzdBillResponse>;
92
+ listBill: IGzzdBillResponse[];
93
+ readUnit: IUnitResponse[];
94
+ cellEdit: ICellEditResponse[];
89
95
  }
90
96
 
91
97
  export class TGzzdMainResponse implements IGzzdMainResponse {
@@ -130,6 +136,7 @@ export class TGzzdMainResponse implements IGzzdMainResponse {
130
136
  flowUndo: number = 0;
131
137
  flowText: string = "";
132
138
  gzzdMemo: string = "";
139
+ bodyFill: number = 0;
133
140
 
134
141
  menuUUID: string = "";
135
142
  gzzdCode: string = "";
@@ -170,7 +177,9 @@ export class TGzzdMainResponse implements IGzzdMainResponse {
170
177
  gzzdFrom: number = 0;
171
178
  fromGzjgQueuesBy: number = 0; // 工资结构按照Y中的顺序进行排序
172
179
  taskPara: string = "";
173
- listBill: Array<IGzzdBillResponse> = [];
180
+ listBill: IGzzdBillResponse[] = [];
181
+ readUnit: IUnitResponse[] = [];
182
+ cellEdit: ICellEditResponse[] = [];
174
183
 
175
184
  constructor(card: keyof IGzzdMainResponse | object) {
176
185
  if (card) {