hjl
2024-07-01 113d266c479a402a3a533d8a72b34c881100f14a
ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/domain/TStory.java
@@ -1,6 +1,7 @@
package com.ruoyi.study.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.web.domain.BaseModel;
@@ -53,6 +54,12 @@
     * 错误语音 要么没有 要么两个逗号隔开
     */
    private String error;
    /**
     * 排序规则
     */
    @TableField(exist = false)
    private Integer sort;
    public Integer getId() {
@@ -112,17 +119,25 @@
        this.error = error;
    }
    public Integer getSort() {
        return sort;
    }
    public void setSort(Integer sort) {
        this.sort = sort;
    }
    @Override
    public String toString() {
        return "TStory{" +
        ", id=" + id +
        ", name=" + name +
        ", english=" + english +
        ", type=" + type +
        ", state=" + state +
        ", img=" + img +
        ", correct=" + correct +
        ", error=" + error +
        "}";
                ", id=" + id +
                ", name=" + name +
                ", english=" + english +
                ", type=" + type +
                ", state=" + state +
                ", img=" + img +
                ", correct=" + correct +
                ", error=" + error +
                "}";
    }
}