package com.gkhy.exam.institutionalaccess.model.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
@Data
|
public class ThBatchVO {
|
private Long id;
|
private String batchName;
|
private String uuid;
|
private Long institutionId;
|
private String institutionName;
|
private Byte haveExam;
|
private Byte openStatus;
|
private String trainOrgName;
|
private Integer studentCount;
|
//删除标志(0代表存在 2代表删除)
|
private Byte delFlag;
|
|
/** 创建者 */
|
private String createBy;
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime createTime;
|
|
/** 更新者 */
|
private String updateBy;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime updateTime;
|
|
private List<ThBatchCourseVO> courseVOList;
|
}
|