UserCourseVo.java 737 Bytes
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
package com.zehong.system.domain.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;

import java.util.Date;
@Data
public class UserCourseVo {

    private Long userCourseId;

    private Long courseId;

    private String courseName;

    private String courseType;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date releaseTime;

    private Integer topicNum;

    private Integer qualifiedNum;

    private Integer state;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date examinationTime;

    private Integer examinationResult;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
34 35

    private String dataKind;
36 37

    private Integer personnelType;
耿迪迪's avatar
耿迪迪 committed
38
}