提交 29bed55f authored 作者: renjiancai's avatar renjiancai

--no commit message

上级 9a370bfd
package com.zrqx.core.vo.excel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import javax.persistence.Id;
import lombok.Data;
import com.zrqx.core.util.excelutil.ExcelResources;
import com.zrqx.core.util.excelutil.ExcelSheetParams;
/*
* 回收站导出
* @author rjc
* @date 2019年2月20日下午4:01:24
*/
@ExcelSheetParams(startRow = 2)
@Data
public class ExcleRecycleBinVo {
@ExcelResources(title = "id")
private String id;
@ExcelResources(title = "关联id")
private String objectId;
@ExcelResources(title = "资源id")
private String resourceId;
@ExcelResources(title = "资源类型")
private Integer resourceType;
@ExcelResources(title = "创建时间")
private Date createTime;
@ExcelResources(title = "资源名称")
private String name;
@ExcelResources(title = "封面")
private String cover;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论