|
|
@@ -6,6 +6,7 @@ import com.alibaba.excel.annotation.write.style.ContentStyle;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
@@ -26,10 +27,15 @@ public class TextbookIssueRecordPageVo {
|
|
|
private String id;
|
|
|
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("序号")
|
|
|
- @ApiModelProperty("序号")
|
|
|
- private Integer sortCode;
|
|
|
+ @ExcelProperty("学期")
|
|
|
+ @ApiModelProperty("学期")
|
|
|
+ public String baseSemesterIdCn;
|
|
|
+
|
|
|
+ @ApiModelProperty("出库单号")
|
|
|
+ public String orderNumber;
|
|
|
|
|
|
+ @ApiModelProperty("入库单号")
|
|
|
+ public String warehouseOrderNumber;
|
|
|
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
@ExcelProperty("书号")
|
|
|
@@ -56,23 +62,6 @@ public class TextbookIssueRecordPageVo {
|
|
|
@ApiModelProperty("学科组")
|
|
|
private String groupName;
|
|
|
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("使用年级")
|
|
|
- @ApiModelProperty("使用年级")
|
|
|
- private String gradeName;
|
|
|
- /**
|
|
|
- * 使用年级
|
|
|
- */
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("学期")
|
|
|
- @ApiModelProperty("学期")
|
|
|
- public String baseSemesterIdCn;
|
|
|
-
|
|
|
- @ContentStyle(dataFormat = 49)
|
|
|
- @ExcelProperty("使用班级")
|
|
|
- @ApiModelProperty("使用班级")
|
|
|
- private String className;
|
|
|
-
|
|
|
@ContentStyle(dataFormat = 49)
|
|
|
@ExcelProperty("对应课程")
|
|
|
@ApiModelProperty("对应课程")
|
|
|
@@ -113,4 +102,15 @@ public class TextbookIssueRecordPageVo {
|
|
|
@ApiModelProperty("出库数量")
|
|
|
private Integer issueNumber;
|
|
|
|
|
|
+ @ApiModelProperty("定价(元)")
|
|
|
+ private BigDecimal price;
|
|
|
+
|
|
|
+ @ApiModelProperty("实际价格(元)")
|
|
|
+ private BigDecimal subtotal;
|
|
|
+
|
|
|
+ @ApiModelProperty("班级主键")
|
|
|
+ private String classIdCn;
|
|
|
+
|
|
|
+ @ApiModelProperty("年级主键")
|
|
|
+ private String gradeIdCn;
|
|
|
}
|