@ningboyz/types 1.2.59 → 1.2.60

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.2.59",
4
+ "version": "1.2.60",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -61,6 +61,8 @@ export interface IPathResponse {
61
61
  bigImage: string;
62
62
  /** 小图预览路径 */
63
63
  smaImage: string;
64
+ /** 唯一indx */
65
+ billFrom: number;
64
66
  }
65
67
 
66
68
  export class TPathResponse implements IPathResponse {
@@ -126,4 +128,6 @@ export class TPathResponse implements IPathResponse {
126
128
  isRotate: number = 0;
127
129
  bigImage: string = "";
128
130
  smaImage: string = "";
131
+ /** 唯一indx */
132
+ billFrom: number = 0;
129
133
  }
@@ -59,7 +59,7 @@ export interface IYzhtBillResponse {
59
59
  billBind: string;
60
60
  /** 支付时间-单笔 */
61
61
  billDate: number;
62
- /** 收款人是否一致 */
62
+ /** 收款人是否一致 {0:一致,1:不一致} */
63
63
  changeEd: number;
64
64
  /** 收款人不一致情况说明 */
65
65
  reasonBy: string;
@@ -141,7 +141,7 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
141
141
  billBind: string = "";
142
142
  /** 支付时间 */
143
143
  billDate: number = 0;
144
- /** 收款人是否一致 */
144
+ /** 收款人是否一致 {0:一致,1:不一致} */
145
145
  changeEd: number = -1;
146
146
  /** 收款人不一致情况说明 */
147
147
  reasonBy: string = "";