package com.ruoyi.management.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.common.core.web.domain.BaseModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 启动页 注意事项
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-04-26
|
*/
|
@TableName("t_page")
|
public class TPage extends BaseModel {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 图片或视频链接 只有注意事项是视频链接
|
*/
|
@ApiModelProperty(value = "图片地址/或者注意事项视频连接")
|
private String img;
|
/**
|
* 1学习 2家长手机 3家长平板 4注意事项
|
*/
|
@ApiModelProperty(value = "类型 1学习 2家长手机 3家长平板 4注意事项")
|
private Integer type;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
@Override
|
public String toString() {
|
return "TPage{" +
|
", id=" + id +
|
", img=" + img +
|
", type=" + type +
|
"}";
|
}
|
}
|