wuxw
2021-04-23 e9be8d15ab3ee20685793e16071c56485b32e33a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.java110.entity.assetImport;
 
/**
 * 房屋导入对象
 */
public class ImportRoom {
 
    private ImportFloor floor;
 
    private String roomNum;
 
    private int layer;
 
    private String section;
 
    private double builtUpArea;
 
    private String roomFeeId;
 
    private String feeEndDate;
 
    private ImportOwner importOwner;
 
    public ImportFloor getFloor() {
        return floor;
    }
 
    public void setFloor(ImportFloor floor) {
        this.floor = floor;
    }
 
    public String getRoomNum() {
        return roomNum;
    }
 
    public void setRoomNum(String roomNum) {
        this.roomNum = roomNum;
    }
 
    public int getLayer() {
        return layer;
    }
 
    public void setLayer(int layer) {
        this.layer = layer;
    }
 
    public String getSection() {
        return section;
    }
 
    public void setSection(String section) {
        this.section = section;
    }
 
    public double getBuiltUpArea() {
        return builtUpArea;
    }
 
    public void setBuiltUpArea(double builtUpArea) {
        this.builtUpArea = builtUpArea;
    }
 
    public ImportOwner getImportOwner() {
        return importOwner;
    }
 
    public void setImportOwner(ImportOwner importOwner) {
        this.importOwner = importOwner;
    }
 
    public String getRoomFeeId() {
        return roomFeeId;
    }
 
    public void setRoomFeeId(String roomFeeId) {
        this.roomFeeId = roomFeeId;
    }
 
    public String getFeeEndDate() {
        return feeEndDate;
    }
 
    public void setFeeEndDate(String feeEndDate) {
        this.feeEndDate = feeEndDate;
    }
}