package com.panzhihua.service_user.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @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.ASSIGN_ID)
|
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 + "}";
|
}
|
}
|