地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package com.javaweb.cms.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
 
import java.util.List;
 
/**
 * 素材相册对象 cms_album
 * 
 * @author wujiyue
 * @date 2019-11-08
 */
public class Album extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 相册ID */
    private String albumId;
 
    /** 相册名称 */
    @Excel(name = "相册名称")
    private String albumName;
 
    /** 创建人ID */
    private String userId;
 
    /** 部门ID */
    private String deptId;
 
    /** 相册类型 */
    @Excel(name = "相册类型")
    private String albumType;
 
 
    /** 描述 */
    @Excel(name = "描述")
    private String description;
 
    /** 审核状态 */
    @Excel(name = "审核状态")
    private Integer auditState;
    @Excel(name = "编码")
    private String code;
    @Excel(name = "宽度")
    private Integer width;
    @Excel(name = "高度")
    private Integer height;
 
    List<AlbumMaterial> images;
 
    public void setAlbumId(String albumId)
    {
        this.albumId = albumId;
    }
 
    public String getAlbumId() 
    {
        return albumId;
    }
    public void setAlbumName(String albumName) 
    {
        this.albumName = albumName;
    }
 
    public String getAlbumName() 
    {
        return albumName;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
    public void setDeptId(String deptId) 
    {
        this.deptId = deptId;
    }
 
    public String getDeptId() 
    {
        return deptId;
    }
    public void setAlbumType(String albumType) 
    {
        this.albumType = albumType;
    }
 
    public String getAlbumType() 
    {
        return albumType;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setAuditState(Integer auditState) 
    {
        this.auditState = auditState;
    }
 
    public Integer getAuditState() 
    {
        return auditState;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Integer getWidth() {
        return width;
    }
 
    public void setWidth(Integer width) {
        this.width = width;
    }
 
    public Integer getHeight() {
        return height;
    }
 
    public void setHeight(Integer height) {
        this.height = height;
    }
 
    public List<AlbumMaterial> getImages() {
        return images;
    }
 
    public void setImages(List<AlbumMaterial> images) {
        this.images = images;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("albumId", getAlbumId())
            .append("albumName", getAlbumName())
            .append("userId", getUserId())
            .append("deptId", getDeptId())
            .append("albumType", getAlbumType())
            .append("description", getDescription())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("auditState", getAuditState())
            .toString();
    }
}