chengf
2025-12-10 ee89a5cfa50980f1f2f2fa84bb69741b161670b5
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
package com.java110.po.community;
 
import java.io.Serializable;
 
/**
 * @ClassName CommunityPhoto
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/30 21:38
 * @Version 1.0
 * add by wuxw 2020/5/30
 **/
public class CommunityPhotoPo implements Serializable {
 
    private String communityPhotoId;
 
    private String communityId;
    private String communityPhotoTypeCd;
    private String photo;
 
    public String getCommunityPhotoId() {
        return communityPhotoId;
    }
 
    public void setCommunityPhotoId(String communityPhotoId) {
        this.communityPhotoId = communityPhotoId;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getCommunityPhotoTypeCd() {
        return communityPhotoTypeCd;
    }
 
    public void setCommunityPhotoTypeCd(String communityPhotoTypeCd) {
        this.communityPhotoTypeCd = communityPhotoTypeCd;
    }
 
    public String getPhoto() {
        return photo;
    }
 
    public void setPhoto(String photo) {
        this.photo = photo;
    }
}