@ningboyz/types 1.6.121 → 1.6.123

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.6.121",
4
+ "version": "1.6.123",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -166,6 +166,7 @@ export interface IBillMainResponse {
166
166
  didFirst: number;
167
167
 
168
168
  listLock: IBillMainResponse[];
169
+ listLit2: IBillMainResponse[];
169
170
  }
170
171
 
171
172
  export class TBillMainResponse implements IBillMainResponse {
@@ -332,6 +333,7 @@ export class TBillMainResponse implements IBillMainResponse {
332
333
  didFirst: number = 0;
333
334
 
334
335
  listLock: IBillMainResponse[] = [];
336
+ listLit2: IBillMainResponse[] = [];
335
337
 
336
338
  constructor(response: any = {}) {
337
339
  if (response) {
@@ -380,7 +380,7 @@ export interface IYzhtMainResponse {
380
380
  /** 退租生效日期 */
381
381
  httzDate: number;
382
382
  /** 退租原因 */
383
- httztzyy: string;
383
+ httzTzyy: string;
384
384
 
385
385
  thirdApp: string;
386
386
 
@@ -400,6 +400,14 @@ export interface IYzhtMainResponse {
400
400
  listCard: ICardMainResponse[];
401
401
  listRoom: ICardRoomResponse[];
402
402
  listPath: IPathResponse[];
403
+
404
+ listLockLite: IYzhtMainResponse[];
405
+ listDZMXLite: IYzhtDzmxResponse[];
406
+ listFYMXLite: IYzhtFymxResponse[];
407
+ listD2DWLite: IUserResponse[];
408
+ listHyhbLite: ICardHyhbResponse[];
409
+ listFwczLite: ICardFwczResponse[];
410
+ listRoomLite: ICardRoomResponse[];
403
411
  }
404
412
 
405
413
  export class TYzhtMainResponse implements IYzhtMainResponse {
@@ -774,7 +782,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
774
782
  /** 退租生效日期 */
775
783
  httzDate: number = 0;
776
784
  /** 退租原因 */
777
- httztzyy: string = "";
785
+ httzTzyy: string = "";
778
786
 
779
787
  thirdApp: string = "";
780
788
 
@@ -795,6 +803,14 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
795
803
  listRoom: ICardRoomResponse[] = [];
796
804
  listPath: IPathResponse[] = [];
797
805
 
806
+ listLockLite: IYzhtMainResponse[] = [];
807
+ listDZMXLite: IYzhtDzmxResponse[] = [];
808
+ listFYMXLite: IYzhtFymxResponse[] = [];
809
+ listD2DWLite: IUserResponse[] = [];
810
+ listHyhbLite: ICardHyhbResponse[] = [];
811
+ listFwczLite: ICardFwczResponse[] = [];
812
+ listRoomLite: ICardRoomResponse[] = [];
813
+
798
814
  constructor(card: any = {}) {
799
815
  if (card) {
800
816
  _.merge(this, _.pick(card, Object.keys(this)));