| | |
| | | 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; |
| | |
| | | * 错误语音 要么没有 要么两个逗号隔开 |
| | | */ |
| | | private String error; |
| | | |
| | | /** |
| | | * 排序规则 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Integer sort; |
| | | |
| | | |
| | | public Integer getId() { |
| | |
| | | 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 + |
| | | "}"; |
| | | } |
| | | } |