package com.smartor.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 【请填写功能名称】对象 svy_lib_topicdirection
|
*
|
* @author ruoyi
|
* @date 2023-11-28
|
*/
|
public class SvyLibTopicdirection extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
private Long id;
|
|
/** 题目表id */
|
@Excel(name = "题目表id")
|
private Long topicid;
|
|
/** 横向的 */
|
@Excel(name = "横向的")
|
private String transverse;
|
|
/** 纵号的 */
|
@Excel(name = "纵号的")
|
private String direction;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setTopicid(Long topicid)
|
{
|
this.topicid = topicid;
|
}
|
|
public Long getTopicid()
|
{
|
return topicid;
|
}
|
public void setTransverse(String transverse)
|
{
|
this.transverse = transverse;
|
}
|
|
public String getTransverse()
|
{
|
return transverse;
|
}
|
public void setDirection(String direction)
|
{
|
this.direction = direction;
|
}
|
|
public String getDirection()
|
{
|
return direction;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("topicid", getTopicid())
|
.append("transverse", getTransverse())
|
.append("direction", getDirection())
|
.toString();
|
}
|
}
|