123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- package com.xjrsoft.module.textbook.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.time.LocalTime;
- import java.time.LocalDateTime;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Date;
- /**
- * @title: 教材教辅征订项变更历史
- * @Author phoenix
- * @Date: 2025-01-23
- * @Version 1.0
- */
- @Data
- public class AddTextbookSubscriptionItemHistoryDto implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 序号
- */
- @ApiModelProperty("序号")
- private Integer sortCode;
- /**
- * 教材教辅征订编号
- */
- @ApiModelProperty("教材教辅征订编号")
- private Long textbookSubscriptionId;
- /**
- * 教材教辅征订项编号
- */
- @ApiModelProperty("教材教辅征订项编号")
- private Long textbookSubscriptionItemId;
- /**
- * 教材表主键(textbook)
- */
- @ApiModelProperty("教材表主键(textbook)")
- private Long oldTextbookId;
- /**
- * 学生用书征订数量
- */
- @ApiModelProperty("学生用书征订数量")
- private Integer oldStudentNum;
- /**
- * 教师用书征订数量
- */
- @ApiModelProperty("教师用书征订数量")
- private Integer oldTeacherNum;
- /**
- * 实际折扣
- */
- @ApiModelProperty("实际折扣")
- private Double oldDiscount;
- /**
- * 实际价格(元)
- */
- @ApiModelProperty("实际价格(元)")
- private BigDecimal oldPrice;
- /**
- * 当前征订任务征订项入库数量
- */
- @ApiModelProperty("当前征订任务征订项入库数量")
- private Integer oldInStockNum;
- /**
- * 当前征订任务征订项出库数量
- */
- @ApiModelProperty("当前征订任务征订项出库数量")
- private Integer oldOutStockNum;
- /**
- * 教材表主键(textbook)
- */
- @ApiModelProperty("教材表主键(textbook)")
- private Long newTextbookId;
- /**
- * 学生用书征订数量
- */
- @ApiModelProperty("学生用书征订数量")
- private Integer newStudentNum;
- /**
- * 教师用书征订数量
- */
- @ApiModelProperty("教师用书征订数量")
- private Integer newTeacherNum;
- /**
- * 实际折扣
- */
- @ApiModelProperty("实际折扣")
- private Double newDiscount;
- /**
- * 实际价格(元)
- */
- @ApiModelProperty("实际价格(元)")
- private BigDecimal newPrice;
- /**
- * 当前征订任务征订项入库数量
- */
- @ApiModelProperty("当前征订任务征订项入库数量")
- private Integer newInStockNum;
- /**
- * 当前征订任务征订项出库数量
- */
- @ApiModelProperty("当前征订任务征订项出库数量")
- private Integer newOutStockNum;
- /**
- * 当前征订项变更历史记录版本
- */
- @ApiModelProperty("当前征订项变更历史记录版本")
- private Integer historyVersion;
- /**
- * 变更类型(0:未变更,1:学生用书征订数量,2:教师用书征订数量,3:变更课程,4:学生用书征订数量和教师用书征订数量)
- */
- @ApiModelProperty("变更类型(0:未变更,1:学生用书征订数量,2:教师用书征订数量,3:变更课程,4:学生用书征订数量和教师用书征订数量)")
- private Integer alterationType;
- }
|