| | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 所属活动id |
| | | */ |
| | | private Long activityId; |
| | | |
| | | /** |
| | | * 类型(1.党建 2.节日 3.天气预报 4.疫情 5.灾害预警 6.志愿者) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 用户id, 和用户信息表的相关id关联 |
| | |
| | | */ |
| | | private String pictureName; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActActPictureDO{" + |
| | | "id=" + id + |
| | | ", activityId=" + activityId + |
| | | ", userId=" + userId + |
| | | ", createAt=" + createAt + |
| | | ", uploadPicture=" + uploadPicture + |
| | | ", pictureName=" + pictureName + |
| | | "}"; |
| | | } |
| | | /** |
| | | * 是否系统预置(1.是 0.否) |
| | | */ |
| | | private Integer sysFlag; |
| | | |
| | | } |