//package org.springblade.modules.ureport.entity;
|
//
|
//import com.baomidou.mybatisplus.annotation.IdType;
|
//import com.baomidou.mybatisplus.annotation.TableField;
|
//import com.baomidou.mybatisplus.annotation.TableId;
|
//import com.baomidou.mybatisplus.annotation.TableName;
|
//import com.fasterxml.jackson.annotation.JsonFormat;
|
//import lombok.Data;
|
//import lombok.NoArgsConstructor;
|
//import org.springframework.format.annotation.DateTimeFormat;
|
//
|
//import java.util.Date;
|
//
|
///**
|
// * 报表实体类
|
// * @author zhongrj
|
// * @since 2022-03-21
|
// */
|
//@Data
|
//@TableName("sys_report_file")
|
//public class UReportFile {
|
//
|
// public UReportFile() {
|
// }
|
//
|
// public UReportFile(String name, Date updateTime) {
|
// this.name = name;
|
// this.updateTime = updateTime;
|
// }
|
//
|
// /**
|
// * 主键id
|
// */
|
// @TableId(value = "id",type = IdType.AUTO)
|
// private Integer id;
|
//
|
// /**
|
// * 文件名
|
// */
|
// private String name;
|
//
|
// /**
|
// * 文件内容
|
// */
|
// private byte[] content;
|
//
|
//
|
// /**
|
// * 创建时间
|
// */
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
// private Date createTime;
|
//
|
// /**
|
// * 更新时间
|
// */
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
// private Date updateTime;
|
//
|
// /**
|
// * 是否删除 0未删除 1 已删除
|
// */
|
// private Integer isDeleted;
|
//}
|