AddWfExerciseBookItemDto.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.xjrsoft.module.textbook.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. /**
  7. * @title: 作业本征订项
  8. * @Author szs
  9. * @Date: 2023-12-27
  10. * @Version 1.0
  11. */
  12. @Data
  13. public class AddWfExerciseBookItemDto implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 序号
  17. */
  18. @ApiModelProperty("序号")
  19. private Integer sortCode;
  20. /**
  21. * 作业本征订编号
  22. */
  23. @ApiModelProperty("作业本征订编号")
  24. private Long wfExerciseBookId;
  25. /**
  26. * 作业本征订类型(xjr_dictionary_item[exercise_book_type])
  27. */
  28. @ApiModelProperty("作业本征订类型(xjr_dictionary_item[exercise_book_type])")
  29. private String subscriptionType;
  30. /**
  31. * 规格型号
  32. */
  33. @ApiModelProperty("规格型号")
  34. private String specificationsModels;
  35. /**
  36. * 估价(元)
  37. */
  38. @ApiModelProperty("估价(元)")
  39. private BigDecimal appraisalPrice;
  40. /**
  41. * 征订数量
  42. */
  43. @ApiModelProperty("征订数量")
  44. private Integer subscriptionNumber;
  45. }