TeaEvaluateClassDto.java 571 B

1234567891011121314151617181920212223242526272829303132
  1. package com.xjrsoft.module.evaluate.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @title: 被评价对象
  7. * @Author dzx
  8. * @Date: 2024-01-16
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class TeaEvaluateClassDto implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 评价管理编号
  16. */
  17. @ApiModelProperty("年份")
  18. private Integer year;
  19. @ApiModelProperty("月份")
  20. private Integer month;
  21. @ApiModelProperty("月份")
  22. private String evaluateType;
  23. }