huanghongfa
2021-07-02 ffcd3e31c9938eb256d616c80edbe1821e9fb2bf
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
package com.panzhihua.service_user.model.dos;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * @auther lyq
 * @create 2021-07-02 15:45:40
 * @describe 网格员与楼栋关联表实体类
 */
 
@Data
@TableName("event_grid_member_building_relation")
public class EventGridMemberBuildingRelationDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 网格员id
     */
    private Long gridMemberId;
 
    /**
     * 社区id
     */
    private Long communityId;
 
    /**
     * 小区id
     */
    private Long villageId;
 
    /**
     * 楼栋id
     */
    private Long buildingId;
 
    /**
     * 创建时间
     */
    private Date createAt;
 
    @Override
    public String toString() {
        return "EventGridMemberBuildingRelationDO{" +
                "id=" + id +
                ", gridMemberId=" + gridMemberId +
                ", communityId=" + communityId +
                ", villageId=" + villageId +
                ", buildingId=" + buildingId +
                ", createAt=" + createAt +
                "}";
    }
}