shiyj1101
2021-08-05 e57e32fc43da31917912eebb4e47d4e50df1a9e9
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
package com.java110.po.applyRoomDiscountType;
 
import java.io.Serializable;
import java.util.Date;
 
public class ApplyRoomDiscountTypePo implements Serializable {
 
    private String applyType;
private String typeDesc;
private String typeName;
private String statusCd = "0";
private String communityId;
public String getApplyType() {
        return applyType;
    }
public void setApplyType(String applyType) {
        this.applyType = applyType;
    }
public String getTypeDesc() {
        return typeDesc;
    }
public void setTypeDesc(String typeDesc) {
        this.typeDesc = typeDesc;
    }
public String getTypeName() {
        return typeName;
    }
public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
public String getStatusCd() {
        return statusCd;
    }
public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
public String getCommunityId() {
        return communityId;
    }
public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
 
 
}