Blame view

ClassDetailVO.java 1.25 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.subsidy.vo.classdict;

import com.subsidy.util.excel.ExcelColumn;
import lombok.Data;

@Data
public class ClassDetailVO {


    private Long id;

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

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

涂亚平 committed
18 19 20 21
    @ExcelColumn(col = 3,value = "身份证号")
    private String idCards;

    @ExcelColumn(col = 4,value = "联系方式")
涂亚平 committed
22 23 24 25 26
    private String telephone;

    /**
     * 签到次数
     */
涂亚平 committed
27
    @ExcelColumn(col = 5,value = "签到次数")
涂亚平 committed
28 29 30 31 32 33 34 35 36 37 38 39
    private Integer signCounts;

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

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

涂亚平 committed
40
    @ExcelColumn(col = 6,value = "课程进度")
涂亚平 committed
41 42
    private String classProcess;

涂亚平 committed
43
    @ExcelColumn(col = 7,value = "培训时长")
涂亚平 committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    private Integer trainingLength;

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

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

    /**
     * 评价测试
     */
涂亚平 committed
59
    @ExcelColumn(col = 8,value = "评价测试")
涂亚平 committed
60 61 62 63 64
    private Integer score;

    /**
     * 答疑个数
     */
涂亚平 committed
65
    @ExcelColumn(col = 9,value = "答题数")
涂亚平 committed
66 67 68 69 70 71 72 73
    private Integer askCounts;






}