@ningboyz/types 1.2.18 → 1.2.19
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
|
@@ -56,12 +56,16 @@ export interface IYzhtBillResponse {
|
|
|
56
56
|
hzcbMain: number;
|
|
57
57
|
/** 一体化支付记录 */
|
|
58
58
|
billBind: string;
|
|
59
|
-
/**
|
|
59
|
+
/** 支付时间-单笔 */
|
|
60
60
|
billDate: number;
|
|
61
61
|
/** 收款人是否一致 */
|
|
62
62
|
changeEd: number;
|
|
63
63
|
/** 收款人不一致情况说明 */
|
|
64
64
|
reasonBy: string;
|
|
65
|
+
/** 支付时间-多笔 */
|
|
66
|
+
DateText: string;
|
|
67
|
+
/** 收款单位 */
|
|
68
|
+
skdwText: string;
|
|
65
69
|
|
|
66
70
|
/** 一体化项目名称 */
|
|
67
71
|
hzcbTxt1: string;
|
|
@@ -138,6 +142,10 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
|
|
|
138
142
|
changeEd: number = -1;
|
|
139
143
|
/** 收款人不一致情况说明 */
|
|
140
144
|
reasonBy: string = "";
|
|
145
|
+
/** 支付时间-多笔 */
|
|
146
|
+
DateText: string = "";
|
|
147
|
+
/** 收款单位 */
|
|
148
|
+
skdwText: string = "";
|
|
141
149
|
|
|
142
150
|
/** 一体化项目名称 */
|
|
143
151
|
hzcbTxt1: string = "";
|