Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user