@ningboyz/types 1.3.84 → 1.3.85--fixed
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
|
@@ -727,7 +727,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
727
727
|
result.notified = Const.Todo.CONST_STR_TODO_TYPE_TO_CARD_WAIT;
|
|
728
728
|
result.entityID = card.entityID;
|
|
729
729
|
result.billMain = card.cardIndx;
|
|
730
|
-
result.billCode = card.
|
|
730
|
+
result.billCode = card.billCode;
|
|
731
731
|
result.billMemo = card.cardMemo;
|
|
732
732
|
result.createAt = card.createAt;
|
|
733
733
|
result.mastName = card.mastName;
|
|
@@ -750,7 +750,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
750
750
|
travel.flowNode = card.flowNode;
|
|
751
751
|
travel.billUUID = card.entityID;
|
|
752
752
|
travel.billMain = card.cardIndx;
|
|
753
|
-
travel.billCode = card.
|
|
753
|
+
travel.billCode = card.billCode;
|
|
754
754
|
travel.mastName = card.mastName;
|
|
755
755
|
travel.createBy = card.createBy;
|
|
756
756
|
travel.menuUUID = card.menuUUID;
|
|
@@ -33,7 +33,7 @@ export interface IHznjBillResponse {
|
|
|
33
33
|
/**单位 */
|
|
34
34
|
jldwText: string;
|
|
35
35
|
/**实测结果 */
|
|
36
|
-
resultText:
|
|
36
|
+
resultText:number;
|
|
37
37
|
/**实测数据 */
|
|
38
38
|
actualAt: number;
|
|
39
39
|
/**实测数据 */
|
|
@@ -73,7 +73,7 @@ export class THznjBillResponse implements IHznjBillResponse {
|
|
|
73
73
|
limitVal: number = 0;
|
|
74
74
|
levelVal: number = 0;
|
|
75
75
|
jldwText: string = "";
|
|
76
|
-
resultText:
|
|
76
|
+
resultText: number = 0;
|
|
77
77
|
actualAt: number = 0;
|
|
78
78
|
actualAtText: string = "";
|
|
79
79
|
assessAt: number = 0;
|