地质所 沉降监测网建设项目
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
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.TreeEntity;
 
/**
 * 素材分组对象 cms_material_group
 * 
 * @author wujiyue
 * @date 2019-11-07
 */
public class MaterialGroup extends TreeEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long groupId;
 
    /** 部门ID */
    @Excel(name = "部门ID")
    private String deptId;
 
    /** 分组名称 */
    @Excel(name = "分组名称")
    private String groupName;
 
    /** 描述 */
    @Excel(name = "描述")
    private String description;
 
    /** 排序 */
    @Excel(name = "排序")
    private Integer sort;
 
    /** 创建人用户ID */
    private String userId;
 
    public void setGroupId(Long groupId) 
    {
        this.groupId = groupId;
    }
 
    public Long getGroupId() 
    {
        return groupId;
    }
    public void setDeptId(String deptId) 
    {
        this.deptId = deptId;
    }
 
    public String getDeptId() 
    {
        return deptId;
    }
    public void setGroupName(String groupName) 
    {
        this.groupName = groupName;
    }
 
    public String getGroupName() 
    {
        return groupName;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setSort(Integer sort) 
    {
        this.sort = sort;
    }
 
    public Integer getSort() 
    {
        return sort;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("groupId", getGroupId())
            .append("parentId", getParentId())
            .append("deptId", getDeptId())
            .append("groupName", getGroupName())
            .append("description", getDescription())
            .append("sort", getSort())
            .append("userId", getUserId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .toString();
    }
}