13693261870
20 小时以前 9b5661ebf15f5536748849493cb8b65a6c3644dd
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
package com.se.system.domain;
 
import com.se.common.core.annotation.Excel;
import com.se.common.core.web.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 角色接口对象 sys_role_inte
 * 
 * @author se
 * @date 2024-11-22
 */
public class SysRoleInte
{
    private static final long serialVersionUID = 1L;
 
    /** 角色ID */
    private Long roleId;
 
    /** 接口ID */
    private Long inteId;
 
    public void setRoleId(Long roleId) 
    {
        this.roleId = roleId;
    }
 
    public Long getRoleId() 
    {
        return roleId;
    }
    public void setInteId(Long inteId) 
    {
        this.inteId = inteId;
    }
 
    public Long getInteId() 
    {
        return inteId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("roleId", getRoleId())
            .append("inteId", getInteId())
            .toString();
    }
}