@ningboyz/types 1.0.114 → 1.0.116

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.114",
3
+ "version": "1.0.116",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -44,6 +44,8 @@ export interface ITypeResponse extends IBaseResponse<ITypeResponse[]> {
44
44
  label: string;
45
45
  sourceND: number;
46
46
  typeMain: number;
47
+ /** 部门 */
48
+ deptText: string;
47
49
  }
48
50
 
49
51
  export class TTypeResponse extends TBaseResponse<ITypeResponse[]> implements ITypeResponse {
@@ -87,6 +89,7 @@ export class TTypeResponse extends TBaseResponse<ITypeResponse[]> implements ITy
87
89
  label: string = "";
88
90
  sourceND: number = 0;
89
91
  typeMain: number = 0;
92
+ deptText: string = "";
90
93
 
91
94
  static toTree(listType: ITypeResponse[]) {
92
95
  return construct(listType, { id: "typeMain", pid: "parentID", children: "children" }) as ITypeResponse[];
@@ -79,11 +79,11 @@ export interface ICronMainResponse {
79
79
  export class TCronMainResponse implements ICronMainResponse {
80
80
  billType: string = "";
81
81
  billUUID: string = "";
82
- bkColour: string = "";
82
+ bkColour: string = "";
83
83
  createAt: number = 0;
84
84
  createBy: string = "";
85
85
  cronCode: string = "";
86
- cronIndx: number = 0;
86
+ cronIndx: number = 0;
87
87
  cronMemo: string = "";
88
88
  cronName: string = "";
89
89
  cronNoti: string = "";
@@ -134,7 +134,7 @@ export class TCronMainResponse implements ICronMainResponse {
134
134
  sysClasd: string = "";
135
135
  sysClasn: string = "";
136
136
  systemOn: number = 0;
137
- targetTo: string = "";
137
+ targetTo: string = "";
138
138
  todoName: string = "";
139
139
  todoSize: number = 0;
140
140
  unitMain: number = 0;
@@ -6,5 +6,6 @@ export enum StoreId {
6
6
  OPTIONS_STORE = "OPTIONS_STORE",
7
7
  VIEW_INFO = "VIEW_INFO",
8
8
  DATE_INFO = "DATE_INFO",
9
- DEVELOPER_STORE = "DEVELOPER_STORE"
9
+ DEVELOPER_STORE = "DEVELOPER_STORE",
10
+ MONEY_STORE = "MONEY_STORE"
10
11
  }