@ningboyz/types 1.1.20 → 1.1.22
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
|
@@ -7,6 +7,8 @@ export interface ICardMainResponse {
|
|
|
7
7
|
whoBuild: number;
|
|
8
8
|
/** 卡片索引 */
|
|
9
9
|
cardIndx: number;
|
|
10
|
+
/**单据状态 */
|
|
11
|
+
myoaStat: number;
|
|
10
12
|
cardExid: number;
|
|
11
13
|
parentID: number;
|
|
12
14
|
hashCode: number;
|
|
@@ -40,6 +42,8 @@ export interface ICardMainResponse {
|
|
|
40
42
|
coverURL: string;
|
|
41
43
|
cardKJND: number;
|
|
42
44
|
cardKJQJ: number;
|
|
45
|
+
/** 会议室间歇时间 */
|
|
46
|
+
interval: number;
|
|
43
47
|
/** 入账日期 */
|
|
44
48
|
cardRzrq: number;
|
|
45
49
|
cardGmrq: number;
|
|
@@ -342,6 +346,10 @@ export interface ICardMainResponse {
|
|
|
342
346
|
cardMain: number;
|
|
343
347
|
/** 单号id */
|
|
344
348
|
myoaCode: string;
|
|
349
|
+
/** 收入单号 */
|
|
350
|
+
expdMain: number;
|
|
351
|
+
/** 收入明细单号 */
|
|
352
|
+
gamsBill: number;
|
|
345
353
|
|
|
346
354
|
fromValueNew: number;
|
|
347
355
|
|
|
@@ -380,6 +388,8 @@ export interface ICardMainResponse {
|
|
|
380
388
|
export class TCardMainResponse implements ICardMainResponse {
|
|
381
389
|
whoBuild: number = 0;
|
|
382
390
|
cardIndx: number = 0;
|
|
391
|
+
myoaStat: number = 0;
|
|
392
|
+
interval: number = 0;
|
|
383
393
|
cardExid: number = 0;
|
|
384
394
|
parentID: number = 0;
|
|
385
395
|
hashCode: number = 0;
|
|
@@ -605,6 +615,10 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
605
615
|
|
|
606
616
|
fromValueNew: number = 0;
|
|
607
617
|
|
|
618
|
+
expdMain: number = 0;
|
|
619
|
+
|
|
620
|
+
gamsBill: number = 0;
|
|
621
|
+
|
|
608
622
|
constructor(card: any = {}) {
|
|
609
623
|
if (card) {
|
|
610
624
|
_.merge(this, _.pick(card, Object.keys(this)));
|
|
@@ -18,7 +18,6 @@ export interface IMyoaMainResponse {
|
|
|
18
18
|
whoBuild: number;
|
|
19
19
|
userIndx: number;
|
|
20
20
|
myoaIndx: number;
|
|
21
|
-
|
|
22
21
|
parentID: number;
|
|
23
22
|
hashCode: number;
|
|
24
23
|
dataLevl: number;
|
|
@@ -196,7 +195,6 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
196
195
|
whoBuild: number = 0;
|
|
197
196
|
userIndx: number = 0;
|
|
198
197
|
myoaIndx: number = 0;
|
|
199
|
-
|
|
200
198
|
parentID: number = 0;
|
|
201
199
|
hashCode: number = 0;
|
|
202
200
|
dataLevl: number = 0;
|