| | |
| | | package com.panzhihua.service_community.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.panzhihua.common.model.vos.sanshuo.ComEventRequestImageVO; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Description 三说会堂事件流转表 |
| | |
| | | * @date 2022-09-07 11:23:52 |
| | | */ |
| | | @Data |
| | | @TableName("event_transfer_record") |
| | | @TableName("com_sanshuo_event_transfer_record") |
| | | public class ComEventTransferRecord implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | /**主键*/ |
| | |
| | | /**调解状态(1、调解未完成2、调解完成)*/ |
| | | @ApiModelProperty(name = "eventStatus", value = "调解状态(1、调解未完成2、调解完成)") |
| | | private Integer eventStatus; |
| | | |
| | | /** |
| | | * 调解上传图片地址列表,逗号进行分割 |
| | | */ |
| | | @ApiModelProperty(name = "images", value = "调解上传图片地址列表,逗号进行分割") |
| | | @TableField(exist = false) |
| | | private List<ComEventRequestImageVO> images; |
| | | } |