@ningboyz/types 1.6.40 → 1.6.41

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.40",
4
+ "version": "1.6.41",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -54,7 +54,7 @@ export interface IUserLiteResponse {
54
54
  aplMoney: number;
55
55
 
56
56
  userIdcd: string;
57
-
57
+ wbField4: string;
58
58
  totalDay: number; //工作日领取出差补贴天数
59
59
  userType: number;
60
60
  billMemo: string;
@@ -73,6 +73,7 @@ export interface IUserLiteResponse {
73
73
  /**排名名称 */
74
74
  rankText: string;
75
75
  userDeptText: string;
76
+
76
77
  }
77
78
 
78
79
  export class TUserLiteResponse implements IUserLiteResponse {
@@ -89,7 +90,7 @@ export class TUserLiteResponse implements IUserLiteResponse {
89
90
  usrTitle: string = ""; //身份
90
91
  usrEmail: string = ""; //电子邮箱
91
92
  parentID: number = 0; //@父级标识
92
-
93
+ wbField4: string = "";
93
94
  wContact: string = ""; //#联系人
94
95
  dContact: string = ""; //#联系电话
95
96
  dataStat: number = 0;
@@ -28,6 +28,7 @@ export interface IWzpzUserK8kmResponse {
28
28
  itemName: string;
29
29
  billMemo: string;
30
30
  yearFrom: number;
31
+ userName: string;
31
32
  }
32
33
 
33
34
  export class TWzpzUserK8kmResponse implements IWzpzUserK8kmResponse {
@@ -58,6 +59,7 @@ export interface IWzpzUserK8kmResponse {
58
59
  itemName: string = "";
59
60
  billMemo: string = "";
60
61
  yearFrom: number = 0;
62
+ userName: string = "";
61
63
  constructor(data: Partial<IWzpzUserK8kmResponse> = {}) {
62
64
  if (data) {
63
65
  _.merge(this, _.pick(data, Object.keys(this)));