@ningboyz/types 1.3.180 → 1.3.182
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
|
@@ -64,6 +64,8 @@ export interface ICardFwczResponse {
|
|
|
64
64
|
/** 备注 */
|
|
65
65
|
fwczMemo: string;
|
|
66
66
|
|
|
67
|
+
/** 单位编码 */
|
|
68
|
+
sourceDW: string;
|
|
67
69
|
/** 单位名称 */
|
|
68
70
|
unitText: string;
|
|
69
71
|
/** 招租方式.名称 */
|
|
@@ -147,6 +149,8 @@ export class TCardFwczResponse implements ICardFwczResponse {
|
|
|
147
149
|
/** 备注 */
|
|
148
150
|
fwczMemo: string = "";
|
|
149
151
|
|
|
152
|
+
/** 单位编码 */
|
|
153
|
+
sourceDW: string = "";
|
|
150
154
|
/** 单位名称 */
|
|
151
155
|
unitText: string = "";
|
|
152
156
|
/** 招租方式.名称 */
|
|
@@ -36,6 +36,9 @@ export interface ICardHyhbResponse {
|
|
|
36
36
|
userSize: number;
|
|
37
37
|
hyhbMemo: string;
|
|
38
38
|
|
|
39
|
+
/** 单位编码 */
|
|
40
|
+
sourceDW: string;
|
|
41
|
+
/** 单位名称 */
|
|
39
42
|
unitText: string;
|
|
40
43
|
|
|
41
44
|
listBill: ICardHyhbBillResponse[];
|
|
@@ -77,6 +80,9 @@ export class TCardHyhbResponse implements ICardHyhbResponse {
|
|
|
77
80
|
userSize: number = 0;
|
|
78
81
|
hyhbMemo: string = "";
|
|
79
82
|
|
|
83
|
+
/** 单位编码 */
|
|
84
|
+
sourceDW: string = "";
|
|
85
|
+
/** 单位名称 */
|
|
80
86
|
unitText: string = "";
|
|
81
87
|
|
|
82
88
|
listBill: ICardHyhbBillResponse[] = [];
|
package/src/const/const_hznk.ts
CHANGED
|
@@ -31,3 +31,4 @@ export const CONST_HZNK_FYTQ_DATA_TYPE_T0_间接费用 = 1002;
|
|
|
31
31
|
export const CONST_HZCB_MAIN_DATA_TYPE_TO_基地管理 = 1001
|
|
32
32
|
export const CONST_HZCB_MAIN_DATA_TYPE_TO_建设管理 = 1002
|
|
33
33
|
export const CONST_HZCB_MAIN_DATA_TYPE_TO_项目验收 = 1003
|
|
34
|
+
export const CONST_HZCB_MAIN_DATA_TYPE_TO_基地建设维修 = 1004
|
package/src/const/const_user.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const LOGIN_USER
|
|
2
|
-
export const USER_SESSION_INFO
|
|
1
|
+
export const LOGIN_USER = "LOGIN_USER";
|
|
2
|
+
export const USER_SESSION_INFO = "USER_SESSION_INFO";
|
|
@@ -33,6 +33,9 @@ export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
|
33
33
|
deptName: string;
|
|
34
34
|
/** 部门类型(新) 文本 */
|
|
35
35
|
deptTypeText: string;
|
|
36
|
+
userTxt1: string;
|
|
37
|
+
userTxt2: string;
|
|
38
|
+
userTxt3: string;
|
|
36
39
|
entityID: string;
|
|
37
40
|
gkbmText: string;
|
|
38
41
|
hashCode: number;
|
|
@@ -97,6 +100,9 @@ export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDept
|
|
|
97
100
|
deptMemo: string = "";
|
|
98
101
|
deptName: string = "";
|
|
99
102
|
deptTypeText: string = "";
|
|
103
|
+
userTxt1: string = "";
|
|
104
|
+
userTxt2: string = "";
|
|
105
|
+
userTxt3: string = "";
|
|
100
106
|
entityID: string = "";
|
|
101
107
|
gkbmText: string = "";
|
|
102
108
|
hashCode: number = 0;
|