Merge remote-tracking branch 'origin/master'

This commit is contained in:
zhuxinyu
2023-04-19 14:24:10 +08:00
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;
}