qirong
2023-11-28 99b29966852e4f8e1dfb2e444db4f86ce786a3b1
src/main/java/com/mindskip/xzs/domain/ExamTemplates.java
@@ -11,6 +11,8 @@
    private String suggestTime;
    private String titleName;
    private Date ctime;
    private String status;
    private String menuIds;
    public Integer getId() {
        return id;
@@ -60,6 +62,22 @@
        this.ctime = ctime;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public String getMenuIds() {
        return menuIds;
    }
    public void setMenuIds(String menuIds) {
        this.menuIds = menuIds;
    }
    @Override
    public String toString() {
        return "ExamTemplates{" +
@@ -69,6 +87,8 @@
                ", suggestTime='" + suggestTime + '\'' +
                ", titleName='" + titleName + '\'' +
                ", ctime='" + ctime + '\'' +
                ", status='" + status + '\'' +
                ", menuIds='" + menuIds + '\'' +
                '}';
    }
}