@ningboyz/types 1.5.195 → 1.5.197
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
|
@@ -414,6 +414,11 @@ export interface ICardMainResponse {
|
|
|
414
414
|
/** 单据状态 */
|
|
415
415
|
myoaStat: number;
|
|
416
416
|
|
|
417
|
+
/** 借入房产分类 */
|
|
418
|
+
cardFcfl: number;
|
|
419
|
+
/** 借入房产分类 */
|
|
420
|
+
cardFcflText: string;
|
|
421
|
+
|
|
417
422
|
wContact: string; // 联系人
|
|
418
423
|
dContact: string; // 联系电话
|
|
419
424
|
|
|
@@ -603,6 +608,10 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
603
608
|
cardBzqk: number = 0;
|
|
604
609
|
cardBzqkText: string = "";
|
|
605
610
|
cardCqbz: number = 0;
|
|
611
|
+
/** 借入房产分类 */
|
|
612
|
+
cardFcfl: number = 0;
|
|
613
|
+
/** 借入房产分类 */
|
|
614
|
+
cardFcflText: string = "";
|
|
606
615
|
|
|
607
616
|
autoType: number = 0;
|
|
608
617
|
autoCpbh: string = "";
|
|
@@ -1,36 +1,7 @@
|
|
|
1
|
-
import _ from "lodash";
|
|
2
|
-
import { DConfigProperty, DFormType, IConfigProperty } from "../decorators";
|
|
3
|
-
import { DConfigManager } from "../decorators/DConfigManager";
|
|
4
|
-
|
|
5
1
|
export interface IDictResponseConf {
|
|
6
2
|
usesManualMode: number;
|
|
7
3
|
}
|
|
8
4
|
|
|
9
|
-
const coreDictResponseConf_id = "coreDictResponseConf_id_d372a7b9f01c423da68a2133888e335a";
|
|
10
|
-
|
|
11
5
|
export class TDictResponseConf implements IDictResponseConf {
|
|
12
|
-
public static id: string = coreDictResponseConf_id;
|
|
13
|
-
listCnfg: IConfigProperty[] = [];
|
|
14
|
-
constructor(typePara?: string) {
|
|
15
|
-
if (!_.isNil(typePara) && !_.isEmpty(typePara)) {
|
|
16
|
-
try {
|
|
17
|
-
const obj = JSON.parse(typePara) as TDictResponseConf;
|
|
18
|
-
Object.assign(this, obj);
|
|
19
|
-
} catch (e) {}
|
|
20
|
-
}
|
|
21
|
-
const listCnfg = DConfigManager.get(TDictResponseConf.id);
|
|
22
|
-
this.listCnfg = listCnfg;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@DConfigProperty({
|
|
26
|
-
cnfgId: coreDictResponseConf_id,
|
|
27
|
-
cnfgName: "开启手动模式",
|
|
28
|
-
cnfgField: "usesManualMode",
|
|
29
|
-
formType: DFormType.select,
|
|
30
|
-
dataSource: [
|
|
31
|
-
{ id: 0, label: "关闭" },
|
|
32
|
-
{ id: 1, label: "开启" }
|
|
33
|
-
]
|
|
34
|
-
})
|
|
35
6
|
usesManualMode: number = 0;
|
|
36
7
|
}
|
|
@@ -1,36 +1,8 @@
|
|
|
1
|
-
import _ from "lodash";
|
|
2
|
-
import { DConfigProperty, DFormType, IConfigProperty } from "../decorators";
|
|
3
|
-
import { DConfigManager } from "../decorators/DConfigManager";
|
|
4
|
-
|
|
5
1
|
export interface IYzpzTypeResponseConf {
|
|
6
2
|
usesManualMode: number;
|
|
7
3
|
}
|
|
8
4
|
|
|
9
|
-
const yzpzTypeResponseConf_id = "8551b8735a3449679b54fbc1b1c4d8f6";
|
|
10
|
-
|
|
11
5
|
export class TYzpzTypeResponseConf implements IYzpzTypeResponseConf {
|
|
12
|
-
public static id: string = yzpzTypeResponseConf_id;
|
|
13
|
-
listCnfg: IConfigProperty[] = [];
|
|
14
|
-
constructor(typePara?: string) {
|
|
15
|
-
if (!_.isNil(typePara) && !_.isEmpty(typePara)) {
|
|
16
|
-
try {
|
|
17
|
-
const obj = JSON.parse(typePara) as TYzpzTypeResponseConf;
|
|
18
|
-
Object.assign(this, obj);
|
|
19
|
-
} catch (e) {}
|
|
20
|
-
}
|
|
21
|
-
const listCnfg = DConfigManager.get(TYzpzTypeResponseConf.id);
|
|
22
|
-
this.listCnfg = listCnfg;
|
|
23
|
-
}
|
|
24
6
|
|
|
25
|
-
@DConfigProperty({
|
|
26
|
-
cnfgId: yzpzTypeResponseConf_id,
|
|
27
|
-
cnfgName: "开启手动模式",
|
|
28
|
-
cnfgField: "usesManualMode",
|
|
29
|
-
formType: DFormType.select,
|
|
30
|
-
dataSource: [
|
|
31
|
-
{ id: 0, label: "关闭" },
|
|
32
|
-
{ id: 1, label: "开启" }
|
|
33
|
-
]
|
|
34
|
-
})
|
|
35
7
|
usesManualMode: number = 0;
|
|
36
8
|
}
|