zhs
2025-04-17 d768725d119fb5ab75df5c8cf37fe9d7cde3e529
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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();
    }
}