提交 694b68e8 authored 作者: xinjunguo's avatar xinjunguo

--no commit message

上级 628a9ba8
...@@ -104,6 +104,8 @@ public class EbookVO { ...@@ -104,6 +104,8 @@ public class EbookVO {
private Integer status; private Integer status;
@ApiModelProperty("pdf名称") @ApiModelProperty("pdf名称")
private String pdfName; private String pdfName;
@ApiModelProperty("印刷")
private String print;
@ApiModelProperty(value = "pdf原始名") @ApiModelProperty(value = "pdf原始名")
private String pdf_zh; private String pdf_zh;
......
package com.zrqx.core.vo.resource.ebook;
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 ExcelBookImportVo {
@ExcelResources(title="图书名称(必填)",order=1)
private String name;
@ExcelResources(title="作者",order=2)
private String author;
@ExcelResources(title="ISBN(必填)",order=3)
private String isbn;
@ExcelResources(title="版权期限",order=4)
private String copyrightTerm;
@ExcelResources(title="译者",order=5)
private String translator;
@ExcelResources(title="责任编辑",order=6)
private String executiveEditor;
@ExcelResources(title="丛书名称",order=7)
private String bookSeries;
@ExcelResources(title="出版日期",order=8)
private String publishTime;
@ExcelResources(title="出版单位",order=9)
private String publisher;
@ExcelResources(title="字数",order=10)
private String fontCount;
@ExcelResources(title="版次",order=11)
private String revision;
@ExcelResources(title="关键词",order=12)
private String keywords;
@ExcelResources(title="开本",order=13)
private String format;
@ExcelResources(title="印张",order=14)
private String printCount;
@ExcelResources(title="页数",order=15)
private String totalPages;
@ExcelResources(title="印次",order=16)
private String printNo;
@ExcelResources(title="中图分类号",order=17)
private String midpicid;
@ExcelResources(title="关于作者",order=18)
private String aboutAuthor;
@ExcelResources(title="编号",order=19)
private String bookNo;
@ExcelResources(title="邮编",order=20)
private String zipCode;
@ExcelResources(title="CIP",order=21)
private String CIP;
@ExcelResources(title="印刷",order=22)
private String print;
@ExcelResources(title="图书简介",order=23)
private String summary;
@ExcelResources(title="书刊类型",order=24)
private String type;
@ExcelResources(title="销售状态",order=24)
private String status;
@ExcelResources(title="电子书售价",order=25)
private String realPrice;
@ExcelResources(title="纸质书售价",order=26)
private String entityRealPrice;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论