| 1234567891011121314151617181920212223242526272829303132 |
- package com.xjrsoft.module.evaluate.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @title: 被评价对象
- * @Author dzx
- * @Date: 2024-01-16
- * @Version 1.0
- */
- @Data
- public class TeaEvaluateClassDto implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 评价管理编号
- */
- @ApiModelProperty("年份")
- private Integer year;
- @ApiModelProperty("月份")
- private Integer month;
- @ApiModelProperty("月份")
- private String evaluateType;
- }
|