@ningboyz/apis 1.2.143 → 1.2.145
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 +2 -2
- package/packages/bill/main.ts +12 -2
- package/packages/bill/types.ts +3 -0
- package/packages/hznk/fytq.ts +36 -0
- package/packages/hznk/index.ts +6 -0
- package/packages/hznk/type.ts +106 -0
- package/packages/hznk/xmys.ts +36 -0
- package/packages/japz/types.ts +130 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.145",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政请求库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"registry": "https://registry.npmjs.org/"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ningboyz/types": "1.2.
|
|
20
|
+
"@ningboyz/types": "1.2.145",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/bill/main.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TBill } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
|
-
import { IBillMainDeletedbQuerys, IBillMainDetaildbQuerys, IBillMainInsertdbQuerys, IBillMainSelectdbQuerys, IBillMainUpdated2Querys, IBillMainUpdatedbQuerys } from "./types";
|
|
3
|
+
import { IBillMainChkexistQuerys, IBillMainDeletedbQuerys, IBillMainDetaildbQuerys, IBillMainInsertdbQuerys, IBillMainSelectdbQuerys, IBillMainUpdated2Querys, IBillMainUpdatedbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class MainRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -75,7 +75,17 @@ class MainRequest {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* 票据保存判断
|
|
79
|
+
* @param querys
|
|
80
|
+
* @param params
|
|
81
|
+
* @returns
|
|
82
|
+
*/
|
|
83
|
+
chkexist(querys: IBillMainChkexistQuerys, params: object) {
|
|
84
|
+
return this.httpRequest.post<TBill.IBillMainResponse[]>("/gapi/bill/tmain/chkexist", querys, params);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 票据关闭
|
|
79
89
|
* @param querys
|
|
80
90
|
* @returns
|
|
81
91
|
*/
|
package/packages/bill/types.ts
CHANGED
|
@@ -54,6 +54,9 @@ export class TBillCnfgSelectdbQuerys implements IBillCnfgSelectdbQuerys {}
|
|
|
54
54
|
export interface IBillCnfgSelectd2Querys {}
|
|
55
55
|
export class TBillCnfgSelectd2Querys implements IBillCnfgSelectd2Querys {}
|
|
56
56
|
|
|
57
|
+
export interface IBillMainChkexistQuerys()
|
|
58
|
+
export class TBillMainChkexistQuerys implements IBillMainChkexistQuerys {}
|
|
59
|
+
|
|
57
60
|
export interface IBillMainUpdated2Querys {
|
|
58
61
|
datahide: number;
|
|
59
62
|
billmain: number;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { THznk } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IHznkFytqDeletedbQuerys, IHznkFytqDetailQuerys, IHznkFytqFinishedQuerys, IHznkFytqInsertdbQuerys, IHznkFytqSelectdbQuerys, IHznkFytqUpdatedbQuerys } from "./type";
|
|
4
|
+
|
|
5
|
+
class FytqRequest {
|
|
6
|
+
private httpRequest: HttpRequest;
|
|
7
|
+
constructor(httpRequest: HttpRequest) {
|
|
8
|
+
this.httpRequest = httpRequest;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
selectdb(querys: IHznkFytqSelectdbQuerys) {
|
|
12
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/selectdb", querys, undefined);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
insertdb(querys: IHznkFytqInsertdbQuerys, params: object) {
|
|
16
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/insertdb", querys, params);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
updatedb(querys: IHznkFytqUpdatedbQuerys, params: object) {
|
|
20
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/updatedb", querys, params);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
detaildb(querys: IHznkFytqDetailQuerys) {
|
|
24
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/detaildb", querys, undefined);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
deletedb(querys: IHznkFytqDeletedbQuerys, params: object) {
|
|
28
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/deletedb", querys, params);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
finished(querys: IHznkFytqFinishedQuerys) {
|
|
32
|
+
return this.httpRequest.post<THznk.IHznkFytqResponse[]>("/gapi/hznk/tfytq/finished", querys, undefined);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export default FytqRequest;
|
package/packages/hznk/index.ts
CHANGED
|
@@ -5,6 +5,8 @@ import MainRequest from "./main";
|
|
|
5
5
|
import FydwRequest from "./fydw";
|
|
6
6
|
import NoteRequest from "./note";
|
|
7
7
|
import YssqRequest from "./yssq";
|
|
8
|
+
import XmysRequest from "./xmys";
|
|
9
|
+
import FytqRequest from "./fytq";
|
|
8
10
|
|
|
9
11
|
class HznkRequest {
|
|
10
12
|
public data: DataRequest;
|
|
@@ -13,6 +15,8 @@ class HznkRequest {
|
|
|
13
15
|
public fydw: FydwRequest;
|
|
14
16
|
public note: NoteRequest;
|
|
15
17
|
public yssq: YssqRequest;
|
|
18
|
+
public xmys: XmysRequest;
|
|
19
|
+
public fytq: FytqRequest;
|
|
16
20
|
|
|
17
21
|
constructor(config: IAxiosConfig) {
|
|
18
22
|
const request = createRequest(config);
|
|
@@ -22,6 +26,8 @@ class HznkRequest {
|
|
|
22
26
|
this.fydw = new FydwRequest(request);
|
|
23
27
|
this.note = new NoteRequest(request);
|
|
24
28
|
this.yssq = new YssqRequest(request);
|
|
29
|
+
this.xmys = new XmysRequest(request);
|
|
30
|
+
this.fytq = new FytqRequest(request);
|
|
25
31
|
}
|
|
26
32
|
}
|
|
27
33
|
|
package/packages/hznk/type.ts
CHANGED
|
@@ -340,3 +340,109 @@ export interface IHznkYssqDeletedbQuerys {
|
|
|
340
340
|
export class THznkYssqDeletedbQuerys implements IHznkYssqDeletedbQuerys {
|
|
341
341
|
sourcend: number = -1;
|
|
342
342
|
}
|
|
343
|
+
|
|
344
|
+
//#xmys
|
|
345
|
+
export interface IHznkXmysSelectdbQuerys {
|
|
346
|
+
sourcend: number;
|
|
347
|
+
withflow: number;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export class THznkXmysSelectdbQuerys implements IHznkXmysSelectdbQuerys {
|
|
351
|
+
sourcend: number = -1;
|
|
352
|
+
withflow: number = -1;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export interface IHznkXmysFinishedQuerys {
|
|
356
|
+
sourcend: number;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export class THznkXmysFinishedQuerys implements IHznkXmysFinishedQuerys {
|
|
360
|
+
sourcend: number = -1;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
export interface IHznkXmysInsertdbQuerys {
|
|
364
|
+
sourcend: number;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export class THznkXmysInsertdbQuerys implements IHznkXmysInsertdbQuerys {
|
|
368
|
+
sourcend: number = -1;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export interface IHznkXmysUpdatedbQuerys {
|
|
372
|
+
sourcend: number;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export class THznkXmysUpdatedbQuerys implements IHznkXmysUpdatedbQuerys {
|
|
376
|
+
sourcend: number = -1;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export interface IHznkXmysDetailQuerys {
|
|
380
|
+
sourcend: number;
|
|
381
|
+
xmysindx: number;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export class THznkXmysDetailQuerys implements IHznkXmysDetailQuerys {
|
|
385
|
+
sourcend: number = -1;
|
|
386
|
+
xmysindx: number = -1;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
export interface IHznkXmysDeletedbQuerys {
|
|
390
|
+
sourcend: number;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export class THznkXmysDeletedbQuerys implements IHznkXmysDeletedbQuerys {
|
|
394
|
+
sourcend: number = -1;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
//#fytq
|
|
398
|
+
export interface IHznkFytqSelectdbQuerys {
|
|
399
|
+
sourcend: number;
|
|
400
|
+
withflow: number;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export class THznkFytqSelectdbQuerys implements IHznkFytqSelectdbQuerys {
|
|
404
|
+
sourcend: number = -1;
|
|
405
|
+
withflow: number = -1;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
export interface IHznkFytqFinishedQuerys {
|
|
409
|
+
sourcend: number;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
export class THznkFytqFinishedQuerys implements IHznkFytqFinishedQuerys {
|
|
413
|
+
sourcend: number = -1;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface IHznkFytqInsertdbQuerys {
|
|
417
|
+
sourcend: number;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export class THznkFytqInsertdbQuerys implements IHznkFytqInsertdbQuerys {
|
|
421
|
+
sourcend: number = -1;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface IHznkFytqUpdatedbQuerys {
|
|
425
|
+
sourcend: number;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export class THznkFytqUpdatedbQuerys implements IHznkFytqUpdatedbQuerys {
|
|
429
|
+
sourcend: number = -1;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export interface IHznkFytqDetailQuerys {
|
|
433
|
+
sourcend: number;
|
|
434
|
+
fytqindx: number;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
export class THznkFytqDetailQuerys implements IHznkFytqDetailQuerys {
|
|
438
|
+
sourcend: number = -1;
|
|
439
|
+
fytqindx: number = -1;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export interface IHznkFytqDeletedbQuerys {
|
|
443
|
+
sourcend: number;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export class THznkFytqDeletedbQuerys implements IHznkFytqDeletedbQuerys {
|
|
447
|
+
sourcend: number = -1;
|
|
448
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { THznk } from "@ningboyz/types";
|
|
2
|
+
import { HttpRequest } from "../axios";
|
|
3
|
+
import { IHznkXmysDeletedbQuerys, IHznkXmysDetailQuerys, IHznkXmysFinishedQuerys, IHznkXmysInsertdbQuerys, IHznkXmysSelectdbQuerys, IHznkXmysUpdatedbQuerys } from "./type";
|
|
4
|
+
|
|
5
|
+
class XmysRequest {
|
|
6
|
+
private httpRequest: HttpRequest;
|
|
7
|
+
constructor(httpRequest: HttpRequest) {
|
|
8
|
+
this.httpRequest = httpRequest;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
selectdb(querys: IHznkXmysSelectdbQuerys) {
|
|
12
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/selectdb", querys, undefined);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
insertdb(querys: IHznkXmysInsertdbQuerys, params: object) {
|
|
16
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/insertdb", querys, params);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
updatedb(querys: IHznkXmysUpdatedbQuerys, params: object) {
|
|
20
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/updatedb", querys, params);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
detaildb(querys: IHznkXmysDetailQuerys) {
|
|
24
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/detaildb", querys, undefined);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
deletedb(querys: IHznkXmysDeletedbQuerys, params: object) {
|
|
28
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/deletedb", querys, params);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
finished(querys: IHznkXmysFinishedQuerys) {
|
|
32
|
+
return this.httpRequest.post<THznk.IHznkXmysResponse[]>("/gapi/hznk/txmys/finished", querys, undefined);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export default XmysRequest;
|
package/packages/japz/types.ts
CHANGED
|
@@ -49,131 +49,261 @@ export interface IJapzItemSelectdbQuerys {
|
|
|
49
49
|
sourceid: number;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
export class TJapzItemSelectdbQuerys implements IJapzItemSelectdbQuerys {
|
|
53
|
+
sourcend: number = -1;
|
|
54
|
+
sourceid: number = -1;
|
|
55
|
+
}
|
|
56
|
+
|
|
52
57
|
export interface IJapzItemDetailQuerys {
|
|
53
58
|
sourcend: number;
|
|
54
59
|
sourceid: number;
|
|
55
60
|
itemmain: number;
|
|
56
61
|
}
|
|
57
62
|
|
|
63
|
+
export class TJapzItemDetailQuerys implements IJapzItemDetailQuerys {
|
|
64
|
+
sourcend: number = -1;
|
|
65
|
+
sourceid: number = -1;
|
|
66
|
+
itemmain: number = -1;
|
|
67
|
+
}
|
|
68
|
+
|
|
58
69
|
export interface IJapzItemInsertdbQuerys {
|
|
59
70
|
sourcend: number;
|
|
60
71
|
sourceid: number;
|
|
61
72
|
}
|
|
62
73
|
|
|
74
|
+
export class TJapzItemInsertdbQuerys implements IJapzItemInsertdbQuerys {
|
|
75
|
+
sourcend: number = -1;
|
|
76
|
+
sourceid: number = -1;
|
|
77
|
+
}
|
|
78
|
+
|
|
63
79
|
export interface IJapzItemUpdatedbQuerys {
|
|
64
80
|
sourcend: number;
|
|
65
81
|
sourceid: number;
|
|
66
82
|
}
|
|
67
83
|
|
|
84
|
+
export class TJapzItemUpdatedbQuerys implements IJapzItemUpdatedbQuerys {
|
|
85
|
+
sourcend: number = -1;
|
|
86
|
+
sourceid: number = -1;
|
|
87
|
+
}
|
|
88
|
+
|
|
68
89
|
export interface IJapzItemDeletedbQuerys {
|
|
69
90
|
sourcend: number;
|
|
70
91
|
sourceid: number;
|
|
71
92
|
}
|
|
72
93
|
|
|
94
|
+
export class TJapzItemDeletedbQuerys implements IJapzItemDeletedbQuerys {
|
|
95
|
+
sourcend: number = -1;
|
|
96
|
+
sourceid: number = -1;
|
|
97
|
+
}
|
|
98
|
+
|
|
73
99
|
//#K0km
|
|
74
100
|
export interface IJapzK0kmSelectdbQuerys {
|
|
75
101
|
sourcend: number;
|
|
76
102
|
sourceid: number;
|
|
77
103
|
}
|
|
78
104
|
|
|
105
|
+
export class TJapzK0kmSelectdbQuerys implements IJapzK0kmSelectdbQuerys {
|
|
106
|
+
sourcend: number = -1;
|
|
107
|
+
sourceid: number = -1;
|
|
108
|
+
}
|
|
109
|
+
|
|
79
110
|
export interface IJapzK0kmDetailQuerys {
|
|
80
111
|
sourcend: number;
|
|
81
112
|
sourceid: number;
|
|
82
113
|
k0kmkmid: number;
|
|
83
114
|
}
|
|
84
115
|
|
|
116
|
+
export class TJapzK0kmDetailQuerys implements IJapzK0kmDetailQuerys {
|
|
117
|
+
sourcend: number = -1;
|
|
118
|
+
sourceid: number = -1;
|
|
119
|
+
k0kmkmid: number = -1;
|
|
120
|
+
}
|
|
121
|
+
|
|
85
122
|
export interface IJapzK0kmInsertdbQuerys {
|
|
86
123
|
sourcend: number;
|
|
87
124
|
sourceid: number;
|
|
88
125
|
}
|
|
89
126
|
|
|
127
|
+
export class TJapzK0kmInsertdbQuerys implements IJapzK0kmInsertdbQuerys {
|
|
128
|
+
sourcend: number = -1;
|
|
129
|
+
sourceid: number = -1;
|
|
130
|
+
}
|
|
131
|
+
|
|
90
132
|
export interface IJapzK0kmUpdatedbQuerys {
|
|
91
133
|
sourcend: number;
|
|
92
134
|
sourceid: number;
|
|
93
135
|
}
|
|
94
136
|
|
|
137
|
+
export class TJapzK0kmUpdatedbQuerys implements IJapzK0kmUpdatedbQuerys {
|
|
138
|
+
sourcend: number = -1;
|
|
139
|
+
sourceid: number = -1;
|
|
140
|
+
}
|
|
141
|
+
|
|
95
142
|
export interface IJapzK0kmDeletedbQuerys {
|
|
96
143
|
sourcend: number;
|
|
97
144
|
sourceid: number;
|
|
98
145
|
}
|
|
99
146
|
|
|
147
|
+
export class TJapzK0kmDeletedbQuerys implements IJapzK0kmDeletedbQuerys {
|
|
148
|
+
sourcend: number = -1;
|
|
149
|
+
sourceid: number = -1;
|
|
150
|
+
}
|
|
151
|
+
|
|
100
152
|
//#K7km
|
|
101
153
|
export interface IJapzK7kmSelectdbQuerys {
|
|
102
154
|
sourcend: number;
|
|
103
155
|
sourceid: number;
|
|
104
156
|
}
|
|
105
157
|
|
|
158
|
+
export class TJapzK7kmSelectdbQuerys implements IJapzK7kmSelectdbQuerys {
|
|
159
|
+
sourcend: number = -1;
|
|
160
|
+
sourceid: number = -1;
|
|
161
|
+
}
|
|
162
|
+
|
|
106
163
|
export interface IJapzK7kmDetailQuerys {
|
|
107
164
|
sourcend: number;
|
|
108
165
|
sourceid: number;
|
|
109
166
|
k7kmkmid: number;
|
|
110
167
|
}
|
|
111
168
|
|
|
169
|
+
export class TJapzK7kmDetailQuerys implements IJapzK7kmDetailQuerys {
|
|
170
|
+
sourcend: number = -1;
|
|
171
|
+
sourceid: number = -1;
|
|
172
|
+
k7kmkmid: number = -1;
|
|
173
|
+
}
|
|
174
|
+
|
|
112
175
|
export interface IJapzK7kmInsertdbQuerys {
|
|
113
176
|
sourcend: number;
|
|
114
177
|
sourceid: number;
|
|
115
178
|
}
|
|
116
179
|
|
|
180
|
+
export class TJapzK7kmInsertdbQuerys implements IJapzK7kmInsertdbQuerys {
|
|
181
|
+
sourcend: number = -1;
|
|
182
|
+
sourceid: number = -1;
|
|
183
|
+
}
|
|
184
|
+
|
|
117
185
|
export interface IJapzK7kmUpdatedbQuerys {
|
|
118
186
|
sourcend: number;
|
|
119
187
|
sourceid: number;
|
|
120
188
|
}
|
|
121
189
|
|
|
190
|
+
export class TJapzK7kmUpdatedbQuerys implements IJapzK7kmUpdatedbQuerys {
|
|
191
|
+
sourcend: number = -1;
|
|
192
|
+
sourceid: number = -1;
|
|
193
|
+
}
|
|
194
|
+
|
|
122
195
|
export interface IJapzK7kmDeletedbQuerys {
|
|
123
196
|
sourcend: number;
|
|
124
197
|
sourceid: number;
|
|
125
198
|
}
|
|
126
199
|
|
|
200
|
+
export class TJapzK7kmDeletedbQuerys implements IJapzK7kmDeletedbQuerys {
|
|
201
|
+
sourcend: number = -1;
|
|
202
|
+
sourceid: number = -1;
|
|
203
|
+
}
|
|
204
|
+
|
|
127
205
|
//#K8km
|
|
128
206
|
export interface IJapzK8kmSelectdbQuerys {
|
|
129
207
|
sourcend: number;
|
|
130
208
|
sourceid: number;
|
|
131
209
|
}
|
|
132
210
|
|
|
211
|
+
export class TJapzK8kmSelectdbQuerys implements IJapzK8kmSelectdbQuerys {
|
|
212
|
+
sourcend: number = -1;
|
|
213
|
+
sourceid: number = -1;
|
|
214
|
+
}
|
|
215
|
+
|
|
133
216
|
export interface IJapzK8kmDetailQuerys {
|
|
134
217
|
sourcend: number;
|
|
135
218
|
sourceid: number;
|
|
136
219
|
k8kmkmid: number;
|
|
137
220
|
}
|
|
138
221
|
|
|
222
|
+
export class TJapzK8kmDetailQuerys implements IJapzK8kmDetailQuerys {
|
|
223
|
+
sourcend: number = -1;
|
|
224
|
+
sourceid: number = -1;
|
|
225
|
+
k8kmkmid: number = -1;
|
|
226
|
+
}
|
|
227
|
+
|
|
139
228
|
export interface IJapzK8kmInsertdbQuerys {
|
|
140
229
|
sourcend: number;
|
|
141
230
|
sourceid: number;
|
|
142
231
|
}
|
|
143
232
|
|
|
233
|
+
export class TJapzK8kmInsertdbQuerys implements IJapzK8kmInsertdbQuerys {
|
|
234
|
+
sourcend: number = -1;
|
|
235
|
+
sourceid: number = -1;
|
|
236
|
+
}
|
|
237
|
+
|
|
144
238
|
export interface IJapzK8kmUpdatedbQuerys {
|
|
145
239
|
sourcend: number;
|
|
146
240
|
sourceid: number;
|
|
147
241
|
}
|
|
148
242
|
|
|
243
|
+
export class TJapzK8kmUpdatedbQuerys implements IJapzK8kmUpdatedbQuerys {
|
|
244
|
+
sourcend: number = -1;
|
|
245
|
+
sourceid: number = -1;
|
|
246
|
+
}
|
|
247
|
+
|
|
149
248
|
export interface IJapzK8kmDeletedbQuerys {
|
|
150
249
|
sourcend: number;
|
|
151
250
|
sourceid: number;
|
|
152
251
|
}
|
|
153
252
|
|
|
253
|
+
export class TJapzK8kmDeletedbQuerys implements IJapzK8kmDeletedbQuerys {
|
|
254
|
+
sourcend: number = -1;
|
|
255
|
+
sourceid: number = -1;
|
|
256
|
+
}
|
|
257
|
+
|
|
154
258
|
//#K9km
|
|
155
259
|
export interface IJapzK9kmSelectdbQuerys {
|
|
156
260
|
sourcend: number;
|
|
157
261
|
sourceid: number;
|
|
158
262
|
}
|
|
159
263
|
|
|
264
|
+
export class TJapzK9kmSelectdbQuerys implements IJapzK9kmSelectdbQuerys {
|
|
265
|
+
sourcend: number = -1;
|
|
266
|
+
sourceid: number = -1;
|
|
267
|
+
}
|
|
268
|
+
|
|
160
269
|
export interface IJapzK9kmDetailQuerys {
|
|
161
270
|
sourcend: number;
|
|
162
271
|
sourceid: number;
|
|
163
272
|
k9kmkmid: number;
|
|
164
273
|
}
|
|
165
274
|
|
|
275
|
+
export class TJapzK9kmDetailQuerys implements IJapzK9kmDetailQuerys {
|
|
276
|
+
sourcend: number = -1;
|
|
277
|
+
sourceid: number = -1;
|
|
278
|
+
k9kmkmid: number = -1;
|
|
279
|
+
}
|
|
280
|
+
|
|
166
281
|
export interface IJapzK9kmInsertdbQuerys {
|
|
167
282
|
sourcend: number;
|
|
168
283
|
sourceid: number;
|
|
169
284
|
}
|
|
170
285
|
|
|
286
|
+
export class TJapzK9kmInsertdbQuerys implements IJapzK9kmInsertdbQuerys {
|
|
287
|
+
sourcend: number = -1;
|
|
288
|
+
sourceid: number = -1;
|
|
289
|
+
}
|
|
290
|
+
|
|
171
291
|
export interface IJapzK9kmUpdatedbQuerys {
|
|
172
292
|
sourcend: number;
|
|
173
293
|
sourceid: number;
|
|
174
294
|
}
|
|
175
295
|
|
|
296
|
+
export class TJapzK9kmUpdatedbQuerys implements IJapzK9kmUpdatedbQuerys {
|
|
297
|
+
sourcend: number = -1;
|
|
298
|
+
sourceid: number = -1;
|
|
299
|
+
}
|
|
300
|
+
|
|
176
301
|
export interface IJapzK9kmDeletedbQuerys {
|
|
177
302
|
sourcend: number;
|
|
178
303
|
sourceid: number;
|
|
179
304
|
}
|
|
305
|
+
|
|
306
|
+
export class TJapzK9kmDeletedbQuerys implements IJapzK9kmDeletedbQuerys {
|
|
307
|
+
sourcend: number = -1;
|
|
308
|
+
sourceid: number = -1;
|
|
309
|
+
}
|