zbj//1.大屏获取暂降事件最新50条数据sql更改 2.资源管理 删除资源/下载资源/修改资源

This commit is contained in:
zhangbaojian
2023-04-19 14:23:25 +08:00
parent 92aceff1e3
commit b4bd03c545
9 changed files with 198 additions and 40 deletions

View File

@@ -0,0 +1,31 @@
package com.njcn.system.pojo.po;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.time.LocalDateTime;
/**
* <p>
*
* </p>
*
* @author zbj
* @since 2023-04-18
*/
@Data
public class ResinformationParam {
@Excel(name = "资源名称", width = 20)
private String name;
@Excel(name = "资源类目", width = 20)
private String type;
@Excel(name = "资源描述", width = 20)
private String description;
@Excel(name = "数据更新时间", format = "yyyy-MM-dd HH:mm:ss", width = 20)
private LocalDateTime time;
}