TextbookEnrollTimeDto.java 600 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.qxgmat.dto.response;
  2. import java.util.Date;
  3. public class TextbookEnrollTimeDto {
  4. private Date month;
  5. private Integer number;
  6. private Boolean status;
  7. public Date getMonth() {
  8. return month;
  9. }
  10. public void setMonth(Date month) {
  11. this.month = month;
  12. }
  13. public Integer getNumber() {
  14. return number;
  15. }
  16. public void setNumber(Integer number) {
  17. this.number = number;
  18. }
  19. public Boolean getStatus() {
  20. return status;
  21. }
  22. public void setStatus(Boolean status) {
  23. this.status = status;
  24. }
  25. }