java110
2020-08-07 a73fc6f37200128f1ff8359023bb9c4235b5405f
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
package com.java110.po.importFee;
 
import java.io.Serializable;
import java.util.Date;
 
public class ImportFeePo implements Serializable {
 
    private String feeTypeCd;
private String statusCd = "0";
private String importFeeId;
private String communityId;
public String getFeeTypeCd() {
        return feeTypeCd;
    }
public void setFeeTypeCd(String feeTypeCd) {
        this.feeTypeCd = feeTypeCd;
    }
public String getStatusCd() {
        return statusCd;
    }
public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
public String getImportFeeId() {
        return importFeeId;
    }
public void setImportFeeId(String importFeeId) {
        this.importFeeId = importFeeId;
    }
public String getCommunityId() {
        return communityId;
    }
public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
 
 
}