@ningboyz/types 1.2.59 → 1.2.61

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.61",
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
  }
@@ -40,6 +40,9 @@ export interface IYzhtBillResponse {
40
40
  zftjText: string;
41
41
  unitMain: number;
42
42
 
43
+ /** 合同名称 */
44
+ yzhtName: string;
45
+
43
46
  entityID: string;
44
47
  taxRatio?: number;
45
48
  detailId: number;
@@ -59,7 +62,7 @@ export interface IYzhtBillResponse {
59
62
  billBind: string;
60
63
  /** 支付时间-单笔 */
61
64
  billDate: number;
62
- /** 收款人是否一致 */
65
+ /** 收款人是否一致 {0:一致,1:不一致} */
63
66
  changeEd: number;
64
67
  /** 收款人不一致情况说明 */
65
68
  reasonBy: string;
@@ -122,6 +125,9 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
122
125
  sybmMain: number = 0;
123
126
  zftjText: string = "";
124
127
 
128
+ /** 合同名称 */
129
+ yzhtName: string = "";
130
+
125
131
  entityID: string = "";
126
132
  detailId: number = 0;
127
133
  unitMain: number = 0;
@@ -141,7 +147,7 @@ export class TYzhtBillResponse implements IYzhtBillResponse {
141
147
  billBind: string = "";
142
148
  /** 支付时间 */
143
149
  billDate: number = 0;
144
- /** 收款人是否一致 */
150
+ /** 收款人是否一致 {0:一致,1:不一致} */
145
151
  changeEd: number = -1;
146
152
  /** 收款人不一致情况说明 */
147
153
  reasonBy: string = "";