@ningboyz/types 1.0.103 → 1.0.105

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.0.103",
3
+ "version": "1.0.105",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -1,5 +1,4 @@
1
- import { IDeptResponse, IDictResponse, IUnitResponse, IUserResponse } from "../core";
2
- import { IUserPartResponse } from "../core/IUserPartResponse";
1
+ import { IDeptResponse, IDictResponse, ILaidResponse, IUnitResponse, IUserResponse } from "../core";
3
2
  import { IGblbResponse } from "./IGblbResponse";
4
3
  import { IZclbResponse } from "./IZclbResponse";
5
4
 
@@ -29,9 +28,9 @@ export interface ICardMainFindResponse {
29
28
  cardZjly: IDictResponse[];
30
29
  cardRzrqRange: IRangeVal;
31
30
  cardGrrqRange: IRangeVal;
32
- cardLaid: IUserPartResponse[];
31
+ cardLaid: ILaidResponse[];
33
32
  cardDept: IDeptResponse[];
34
- cardUser: IUserPartResponse[];
33
+ cardUser: IUserResponse[];
35
34
  cardKeep: IUserResponse[];
36
35
  canSplit: number;
37
36
  fromCardStat: number;
@@ -68,9 +67,9 @@ export class TCardMainFindResponse implements ICardMainFindResponse {
68
67
  cardZjly: IDictResponse[] = [];
69
68
  cardRzrqRange: IRangeVal = new TRangeVal();
70
69
  cardGrrqRange: IRangeVal = new TRangeVal();
71
- cardLaid: IUserPartResponse[] = [];
70
+ cardLaid: ILaidResponse[] = [];
72
71
  cardDept: IDeptResponse[] = [];
73
- cardUser: IUserPartResponse[] = [];
72
+ cardUser: IUserResponse[] = [];
74
73
  cardKeep: IUserResponse[] = [];
75
74
  canSplit: number = -1;
76
75
  fromCardStat: number = -3;
@@ -67,7 +67,7 @@ export interface ISysMenuWithCoreResponse {
67
67
  /** 单号字段 */
68
68
  billItem: string;
69
69
  /** 参与事前报备 */
70
- todoLock: string;
70
+ todoLock: number;
71
71
  pathType: IDictResponse[];
72
72
  menuParaConv: ISysMenuWithCoreResponseMenuPara;
73
73
  wldyPage: IWldyPageResponse[];
@@ -130,7 +130,7 @@ export class TSysMenuWithCoreResponse implements ISysMenuWithCoreResponse {
130
130
  billTail: string = "";
131
131
  billTabl: string = "";
132
132
  billItem: string = "";
133
- todoLock: string = "";
133
+ todoLock: number = 0;
134
134
  pathType: IDictResponse[] = [];
135
135
  menuParaConv: ISysMenuWithCoreResponseMenuPara = new TSysMenuWithCoreResponseMenuPara(); // menuPara转换成对象
136
136
  wldyPage: IWldyPageResponse[] = [];