@ningboyz/types 1.7.115 → 1.7.117

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.7.115",
4
+ "version": "1.7.117",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -2,6 +2,7 @@ import _ from "lodash";
2
2
  import type { IDictResponse } from "./IDictResponse";
3
3
  import type { IUnitResponse } from "./IUnitResponse";
4
4
  import type { IDeptResponse } from "./IDeptResponse";
5
+ import { IRangeVal, TRangeVal } from "../card";
5
6
 
6
7
  export interface IUserFindResponse {
7
8
  enrollID: string; // #登录账号.模糊查找
@@ -28,6 +29,13 @@ export interface IUserFindResponse {
28
29
  userZwlvList: number[];
29
30
  userXzlvList: number[];
30
31
  userZwlxList: number[];
32
+
33
+ UserTxrqRanage: IRangeVal
34
+ ListInGender: number[] ;
35
+ ListWorkType: IDictResponse[] //警种
36
+ ListRankLevl: IDictResponse[] //警衔级
37
+ ListRankCode: IDictResponse[]
38
+ ListFromUserStat: number[]
31
39
  }
32
40
 
33
41
  export class TUserFindResponse implements IUserFindResponse {
@@ -56,6 +64,18 @@ export class TUserFindResponse implements IUserFindResponse {
56
64
  userZwlvList: number[] = [];
57
65
  userXzlvList: number[] = [];
58
66
  userZwlxList: number[] = [];
67
+
68
+ ListInGender: number[] = [];
69
+ ListWorkType: IDictResponse[] = [] //警种
70
+ ListRankLevl: IDictResponse[] = [] //警衔级
71
+ ListRankCode: IDictResponse[] = []
72
+ ListFromUserStat: number[] = []
73
+ UserTxrqRanage: IRangeVal = new TRangeVal();
74
+
75
+
76
+
77
+
78
+
59
79
 
60
80
  // #重置搜素条件
61
81
  public Initialize() {
@@ -71,6 +91,12 @@ export class TUserFindResponse implements IUserFindResponse {
71
91
  this.listUserDept = [];
72
92
  this.listUserUnit = [];
73
93
  this.listUserType = [];
94
+ this.ListInGender = [];
95
+ this.ListWorkType = [];
96
+ this.ListRankLevl = [];
97
+ this.ListRankCode = [];
98
+ this.ListFromUserStat = [];
99
+ this.UserTxrqRanage = new TRangeVal();
74
100
  }
75
101
 
76
102
  public static toListUnit(values: number[] | number | undefined) {
@@ -48,6 +48,7 @@ export interface INoteMainResponse {
48
48
  noteName: string;
49
49
  typeName: string;
50
50
  doneStat: number;
51
+ //虚拟字段
51
52
  yzhtHtbh: string;
52
53
  yzhtName: string;
53
54
  billZfqh: string;
@@ -108,6 +109,7 @@ export class TNoteMainResponse implements INoteMainResponse {
108
109
  noteName: string = "";
109
110
  typeName: string = "";
110
111
  doneStat: number = 0;
112
+ //虚拟字段
111
113
  yzhtHtbh: string = "";
112
114
  yzhtName: string = "";
113
115
  billZfqh: string = "";