@ningboyz/types 1.6.101 → 1.6.103
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
|
@@ -378,6 +378,79 @@ export interface ICardMainResponse {
|
|
|
378
378
|
/** 权属人性质(文本) */
|
|
379
379
|
cardQsxzText: string;
|
|
380
380
|
|
|
381
|
+
/** 实际使用单位 */
|
|
382
|
+
cardSydw: string;
|
|
383
|
+
/** 使用性质(字典) */
|
|
384
|
+
cardSyxz: number;
|
|
385
|
+
/** 使用性质(文本) */
|
|
386
|
+
cardSyxzText: string;
|
|
387
|
+
/** 入账形式(字典) */
|
|
388
|
+
cardRzxs: number;
|
|
389
|
+
/** 入账形式(文本) */
|
|
390
|
+
cardRzxsText: string;
|
|
391
|
+
/** 资产分类(字典) */
|
|
392
|
+
cardZcfl: number;
|
|
393
|
+
/** 资产分类(文本) */
|
|
394
|
+
cardZcflText: string;
|
|
395
|
+
|
|
396
|
+
/** 土地证号 */
|
|
397
|
+
landCode: string;
|
|
398
|
+
/** 使用权面积 */
|
|
399
|
+
landSyqmj: number;
|
|
400
|
+
/** 实际使用面积 */
|
|
401
|
+
landSymj: number;
|
|
402
|
+
/** 出让终止日期 */
|
|
403
|
+
landZzrq: number;
|
|
404
|
+
/** 土地等级(字典) */
|
|
405
|
+
landTddj: number;
|
|
406
|
+
/** 土地等级(文本) */
|
|
407
|
+
landTddjText: string;
|
|
408
|
+
|
|
409
|
+
/** 房产证号 */
|
|
410
|
+
buldCode: string;
|
|
411
|
+
/** 计算机机房面积 */
|
|
412
|
+
buldJfmj: number;
|
|
413
|
+
/** 车库面积 */
|
|
414
|
+
buldCkmj: number;
|
|
415
|
+
/** 会议室面积 */
|
|
416
|
+
buldHysmj: number;
|
|
417
|
+
/** 食堂用房面积 */
|
|
418
|
+
buldStmj: number;
|
|
419
|
+
/** 地下建筑面积 */
|
|
420
|
+
buldDxjzmj: number;
|
|
421
|
+
/** 配电房面积 */
|
|
422
|
+
buldPdfmj: number;
|
|
423
|
+
/** 地下使用面积 */
|
|
424
|
+
buldDxsymj: number;
|
|
425
|
+
/** 有无地下室 */
|
|
426
|
+
buldDxs: number;
|
|
427
|
+
/** 交工验收日期 */
|
|
428
|
+
buldYsrq: number;
|
|
429
|
+
/** 开工日期 */
|
|
430
|
+
buldKgrq: number;
|
|
431
|
+
|
|
432
|
+
/** 已行驶里程(公里) */
|
|
433
|
+
autoYxslc: number;
|
|
434
|
+
|
|
435
|
+
/** 公路编码 */
|
|
436
|
+
baseCode: string;
|
|
437
|
+
/** 起始点 */
|
|
438
|
+
baseStart: string;
|
|
439
|
+
/** 终止点 */
|
|
440
|
+
baseEnded: string;
|
|
441
|
+
/** 公路技术等级(字典) */
|
|
442
|
+
baseJsdj: number;
|
|
443
|
+
/** 公路技术等级(文本) */
|
|
444
|
+
baseJsdjText: string;
|
|
445
|
+
/** 公路行政等级(字典) */
|
|
446
|
+
baseXzdj: number;
|
|
447
|
+
/** 公路行政等级(文本) */
|
|
448
|
+
baseXzdjText: string;
|
|
449
|
+
/** 公路资产状态(字典) */
|
|
450
|
+
baseZczt: number;
|
|
451
|
+
/** 公路资产状态(文本) */
|
|
452
|
+
baseZcztText: string;
|
|
453
|
+
|
|
381
454
|
/** 管理状态(1:在管;0:历史) */
|
|
382
455
|
cardGlzt: number;
|
|
383
456
|
|
|
@@ -703,6 +776,45 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
703
776
|
cardQsxz: number = 0;
|
|
704
777
|
cardQsxzText: string = "";
|
|
705
778
|
|
|
779
|
+
cardSydw: string = "";
|
|
780
|
+
cardSyxz: number = 0;
|
|
781
|
+
cardSyxzText: string = "";
|
|
782
|
+
cardRzxs: number = 0;
|
|
783
|
+
cardRzxsText: string = "";
|
|
784
|
+
cardZcfl: number = 0;
|
|
785
|
+
cardZcflText: string = "";
|
|
786
|
+
|
|
787
|
+
landCode: string = "";
|
|
788
|
+
landSyqmj: number = 0;
|
|
789
|
+
landSymj: number = 0;
|
|
790
|
+
landZzrq: number = 0;
|
|
791
|
+
landTddj: number = 0;
|
|
792
|
+
landTddjText: string = "";
|
|
793
|
+
|
|
794
|
+
buldCode: string = "";
|
|
795
|
+
buldJfmj: number = 0;
|
|
796
|
+
buldCkmj: number = 0;
|
|
797
|
+
buldHysmj: number = 0;
|
|
798
|
+
buldStmj: number = 0;
|
|
799
|
+
buldDxjzmj: number = 0;
|
|
800
|
+
buldPdfmj: number = 0;
|
|
801
|
+
buldDxsymj: number = 0;
|
|
802
|
+
buldDxs: number = 0;
|
|
803
|
+
buldYsrq: number = 0;
|
|
804
|
+
buldKgrq: number = 0;
|
|
805
|
+
|
|
806
|
+
autoYxslc: number = 0;
|
|
807
|
+
|
|
808
|
+
baseCode: string = "";
|
|
809
|
+
baseStart: string = "";
|
|
810
|
+
baseEnded: string = "";
|
|
811
|
+
baseJsdj: number = 0;
|
|
812
|
+
baseJsdjText: string = "";
|
|
813
|
+
baseXzdj: number = 0;
|
|
814
|
+
baseXzdjText: string = "";
|
|
815
|
+
baseZczt: number = 0;
|
|
816
|
+
baseZcztText: string = "";
|
|
817
|
+
|
|
706
818
|
cardGlzt: number = 1;
|
|
707
819
|
|
|
708
820
|
hzcbCode: string = "";
|
|
@@ -2,10 +2,13 @@ export interface IUnitResponseElemPara {
|
|
|
2
2
|
/** 签章的特殊id以及secret */
|
|
3
3
|
signProjectId: string;
|
|
4
4
|
signProjectSecret: string;
|
|
5
|
+
showYwdt:string[];
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
export class TUnitResponseElemPara implements IUnitResponseElemPara {
|
|
8
9
|
/** 签章的特殊id以及secret */
|
|
9
10
|
signProjectId: string = "";
|
|
10
11
|
signProjectSecret: string = "";
|
|
12
|
+
// 业务动态需要展示的要素
|
|
13
|
+
showYwdt:string[] = [];
|
|
11
14
|
}
|