ClassDetailVO.java 1.42 KB
package com.subsidy.vo.classdict;

import com.subsidy.util.excel.ExcelColumn;
import com.subsidy.vo.done.GetMaxScoreVO;
import lombok.Data;

import java.util.List;

@Data
public class ClassDetailVO{


    private Long id;

    @ExcelColumn(col = 1,value = "成员名称")
    private String userName;

    @ExcelColumn(col = 2,value = "账号")
    private String accountName;

    @ExcelColumn(col = 3,value = "身份证号")
    private String idCard;

    @ExcelColumn(col = 4,value = "联系方式")
    private String telephone;

    /**
     * 签到次数
     */
    @ExcelColumn(col = 5,value = "签到次数")
    private Integer signCounts;

    /**
     * 已看视频
     */
    private Integer studyVodCounts;

    /**
     * 全部视频
     */
    private Integer allVodCounts;

    @ExcelColumn(col = 6,value = "课程进度")
    private String classProcess;

    private Integer trainingLength;

    @ExcelColumn(col = 7,value = "培训时长")
    private String trainingLengthStr;


    /**
     * 作对个数
     */
    private Integer rightCounts;

    /**
     * 总题数
     */
    private Integer totalExeCounts;

    /**
     * 评价测试
     */
    @ExcelColumn(col = 8,value = "评价测试")
    private String score;

    /**
     * 答疑个数
     */
    @ExcelColumn(col = 9,value = "答题数")
    private Integer askCounts;


    private String result;


    private List<GetMaxScoreVO> getMaxScoreVOS;

}