You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.sztzjy.linkCommerce.entity.dto;
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author 17803
|
|
|
|
|
* @date 2025-04-24 14:12
|
|
|
|
|
*/
|
|
|
|
|
//
|
|
|
|
|
@Data
|
|
|
|
|
public class StuIndustryAnalysisDTO {
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "年度蛋糕指数")
|
|
|
|
|
private List<YearCakeIndexDto> yearCakeIndexDtoList;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "月度蛋糕指数")
|
|
|
|
|
private List<MonthlyCakeIndex> monthlyCakeIndexList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "用户ID")
|
|
|
|
|
private String userId;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "主观题")
|
|
|
|
|
private String context;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "班级名称")
|
|
|
|
|
private String className;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "班级ID")
|
|
|
|
|
private String classId;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "姓名")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(notes = "学校ID")
|
|
|
|
|
private String schoolId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|