package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* title: ComActActPictureDO 社区》活动》历史上传图片实体类
|
* projectName 成都呐喊信息技术有限公司-智慧社区项目
|
* description: 社区》活动》历史上传图片实体类
|
*
|
* @author txb
|
* @date 2021/8/27 14:21
|
*/
|
|
@Data
|
@TableName("com_act_act_picture")
|
public class ComActActPictureDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 所属活动id
|
*/
|
private Long activityId;
|
|
/**
|
* 用户id, 和用户信息表的相关id关联
|
*/
|
private Long userId;
|
|
/**
|
* 上传时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 上传图片
|
*/
|
private String uploadPicture;
|
|
/**
|
* 图片名称
|
*/
|
private String pictureName;
|
|
@Override
|
public String toString() {
|
return "ComActActPictureDO{" +
|
"id=" + id +
|
", activityId=" + activityId +
|
", userId=" + userId +
|
", createAt=" + createAt +
|
", uploadPicture=" + uploadPicture +
|
", pictureName=" + pictureName +
|
"}";
|
}
|
}
|