fuliqi
2023-11-28 d8524dc5ef974bcfacba99128d5e79a268ccdf3f
src/main/java/com/mindskip/xzs/domain/vo/ExamTemplatesVO.java
@@ -5,6 +5,7 @@
import com.mindskip.xzs.domain.ExamTemplatesSubject;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
@@ -14,10 +15,18 @@
    private Integer id;
    private String name;
    private Date ctime;
    private LocalDateTime now;
    private Integer[] subjectId;
    private String status;
    private Integer userId;
    public LocalDateTime getNow() {
        return now;
    }
    public void setNow(LocalDateTime now) {
        this.now = now;
    }
    public Integer getId() {
        return id;
@@ -73,8 +82,9 @@
                "id=" + id +
                ", name='" + name + '\'' +
                ", ctime=" + ctime +
                ", now=" + now +
                ", subjectId=" + Arrays.toString(subjectId) +
                ", status=" + status +
                ", status='" + status + '\'' +
                ", userId=" + userId +
                '}';
    }