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.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 所属活动id
|
*/
|
private Long activityId;
|
|
/**
|
* 类型(1.党建 2.节日 3.天气预报 4.疫情 5.灾害预警 6.志愿者)
|
*/
|
private Integer type;
|
|
/**
|
* 用户id, 和用户信息表的相关id关联
|
*/
|
private Long userId;
|
|
/**
|
* 上传时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 上传图片
|
*/
|
private String uploadPicture;
|
|
/**
|
* 图片名称
|
*/
|
private String pictureName;
|
|
/**
|
* 是否系统预置(1.是 0.否)
|
*/
|
private Integer sysFlag;
|
|
}
|