package com.moral.api.pojo.ext.ycgeneratereport;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import com.moral.api.entity.YcGenerateReport;
|
import com.moral.api.pojo.vo.file.FileVo;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
|
import java.sql.Date;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 盐城报告表
|
* </p>
|
* deyt template generate
|
* @author JI
|
* @since 2024-03-26
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
public class YcGenerateReportPageExt{
|
|
/**
|
* 主键id
|
*/
|
private Integer id;
|
|
/**
|
* 报告日期
|
*/
|
private Date reportTime;
|
|
/**
|
* 报告内容
|
*/
|
private String reportContent;
|
|
/**
|
* 原始内容
|
*/
|
private String originalContent;
|
|
|
/**
|
* 是否删除
|
*/
|
@TableLogic
|
private Integer isDel;
|
|
/**
|
* 是否作废
|
*/
|
private Integer isInvalid;
|
|
/**
|
* 作废理由
|
*/
|
private String invalidReason;
|
|
/**
|
* 创建人id
|
*/
|
private Integer createId;
|
|
/**
|
* 创建人姓名
|
*/
|
private String createName;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新人id
|
*/
|
private Integer updateId;
|
|
/**
|
* 更新人姓名
|
*/
|
private String updateName;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
|
private List<FileVo> list;
|
}
|