提交 eba1b97a authored 作者: xinjunguo's avatar xinjunguo

--no commit message

上级 6998465f
package com.zrqx.core.vo.resource.ebook;
import java.math.BigDecimal;
import lombok.Data;
import com.zrqx.core.util.excelutil.ExcelResources;
import com.zrqx.core.util.excelutil.ExcelSheetParams;
/**
* Excel导入vo
* @author Conan
* @date 2018年7月13日下午2:10:21
*/
@ExcelSheetParams(startRow = 2)
@Data
public class ExcelEbookImportVo {
@ExcelResources(title="电子书号(ISBN)",order=1)
private String isbn;
@ExcelResources(title="书名(CONTENT_TITLE)",order=2)
private String name;
@ExcelResources(title="版次(CONTENT_EDITION)",order=3)
private String revision;
@ExcelResources(title="关键词(CONTENT_KEYWORDS)",order=4)
private String keywords;
@ExcelResources(title="分类法(CONTENT_SUBJECT)",order=5)
private String midpicid;
@ExcelResources(title="出版时间(CONTENT_DATE)",order=6)
private String publishTime;
@ExcelResources(title="出版社名称(PUBLISHER_NAME)",order=7)
private String publisher;
@ExcelResources(title="码洋价(LIST_PRICE)",order=8)
private String price;
@ExcelResources(title="作者(CONTENT_AUTHOR)",order=9)
private String author;
@ExcelResources(title="摘要(CONTENT_ABSTRACT)",order=10)
private String summary;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论