|
@@ -5,7 +5,6 @@ import com.alibaba.excel.annotation.write.style.ContentStyle;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -24,62 +23,71 @@ public class TextbookWarehouseRecordPageVo {
|
|
|
@ExcelProperty("主键编号")
|
|
|
@ApiModelProperty("主键编号")
|
|
|
private String id;
|
|
|
+
|
|
|
/**
|
|
|
- * 创建人
|
|
|
+ * 序号
|
|
|
*/
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("创建人")
|
|
|
- @ApiModelProperty("创建人")
|
|
|
- private Long createUserId;
|
|
|
+ @ExcelProperty("序号")
|
|
|
+ @ApiModelProperty("序号")
|
|
|
+ private Integer sortCode;
|
|
|
+
|
|
|
/**
|
|
|
- * 创建时间
|
|
|
- */
|
|
|
+ * 来源
|
|
|
+ */
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("创建时间")
|
|
|
- @ApiModelProperty("创建时间")
|
|
|
- private Date createDate;
|
|
|
+ @ExcelProperty("来源")
|
|
|
+ @ApiModelProperty("来源")
|
|
|
+ private String issn;
|
|
|
+
|
|
|
/**
|
|
|
- * 修改人
|
|
|
+ * 书名
|
|
|
*/
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("修改人")
|
|
|
- @ApiModelProperty("修改人")
|
|
|
- private Long modifyUserId;
|
|
|
- /**
|
|
|
- * 修改时间
|
|
|
- */
|
|
|
+ @ExcelProperty("书名")
|
|
|
+ @ApiModelProperty("书名")
|
|
|
+ private String bookName;
|
|
|
+
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("修改时间")
|
|
|
- @ApiModelProperty("修改时间")
|
|
|
- private Date modifyDate;
|
|
|
- /**
|
|
|
- * 删除标记
|
|
|
- */
|
|
|
+ @ExcelProperty("出版社")
|
|
|
+ @ApiModelProperty("出版社")
|
|
|
+ private String publishingHouse;
|
|
|
+
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("删除标记")
|
|
|
- @ApiModelProperty("删除标记")
|
|
|
- private Integer deleteMark;
|
|
|
- /**
|
|
|
- * 有效标志
|
|
|
- */
|
|
|
+ @ExcelProperty("作者(主编)")
|
|
|
+ @ApiModelProperty("作者(主编)")
|
|
|
+ private String editorInChief;
|
|
|
+
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("有效标志")
|
|
|
- @ApiModelProperty("有效标志")
|
|
|
- private Integer enabledMark;
|
|
|
- /**
|
|
|
- * 序号
|
|
|
- */
|
|
|
+ @ExcelProperty("学科组")
|
|
|
+ @ApiModelProperty("学科组")
|
|
|
+ private String groupName;
|
|
|
+
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("序号")
|
|
|
- @ApiModelProperty("序号")
|
|
|
- private Integer sortCode;
|
|
|
- /**
|
|
|
- * 教材管理编号
|
|
|
- */
|
|
|
+ @ExcelProperty("对应课程")
|
|
|
+ @ApiModelProperty("对应课程")
|
|
|
+ private String courseName;
|
|
|
+
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
+ @ExcelProperty("类型")
|
|
|
+ @ApiModelProperty("类型")
|
|
|
+ private String textbookTypeCn;
|
|
|
+
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
+ @ExcelProperty("规格型号")
|
|
|
+ @ApiModelProperty("规格型号")
|
|
|
+ private String specificationsModels;
|
|
|
+
|
|
|
+ @ContentStyle(dataFormat = 49)
|
|
|
+ @ExcelProperty("入库时间")
|
|
|
+ @ApiModelProperty("入库时间")
|
|
|
+ private Date createDate;
|
|
|
+
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("教材管理编号")
|
|
|
- @ApiModelProperty("教材管理编号")
|
|
|
- private Long textbookId;
|
|
|
+ @ExcelProperty("入库人员")
|
|
|
+ @ApiModelProperty("入库人员")
|
|
|
+ private String warehouseUser;
|
|
|
+
|
|
|
/**
|
|
|
* 入库数量
|
|
|
*/
|
|
@@ -87,40 +95,7 @@ public class TextbookWarehouseRecordPageVo {
|
|
|
@ExcelProperty("入库数量")
|
|
|
@ApiModelProperty("入库数量")
|
|
|
private Integer warehouseNumber;
|
|
|
- /**
|
|
|
- * 来源
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("来源")
|
|
|
- @ApiModelProperty("来源")
|
|
|
- private String source;
|
|
|
- /**
|
|
|
- * 定价(元)
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("定价(元)")
|
|
|
- @ApiModelProperty("定价(元)")
|
|
|
- private BigDecimal price;
|
|
|
- /**
|
|
|
- * 折扣
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("折扣")
|
|
|
- @ApiModelProperty("折扣")
|
|
|
- private Double discount;
|
|
|
- /**
|
|
|
- * 小计(元)
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("小计(元)")
|
|
|
- @ApiModelProperty("小计(元)")
|
|
|
- private BigDecimal subtotal;
|
|
|
- /**
|
|
|
- * 总价(元)
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("总价(元)")
|
|
|
- @ApiModelProperty("总价(元)")
|
|
|
- private BigDecimal totalPrice;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
}
|