自动化立体仓库 - WCS系统
*
lsh
2025-04-09 991dfce093f460662b287339e1adf2c0f5c8cfc0
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
package com.zy.system.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
 
import java.io.Serializable;
 
@TableName("\"SOURCE\".\"sys_role_resource\"")
public class RoleResource implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 编号
     */
    @TableId(value = "ID", type = IdType.AUTO)
    private Long id;
 
    /**
     * 角色
     */
    @TableField("ROLE_ID")
    private Long roleId;
 
    /**
     * 资源
     */
    @TableField("RESOURCE_ID")
    private Long resourceId;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getRoleId() {
        return roleId;
    }
 
    public void setRoleId(Long roleId) {
        this.roleId = roleId;
    }
 
    public Long getResourceId() {
        return resourceId;
    }
 
    public void setResourceId(Long resourceId) {
        this.resourceId = resourceId;
    }
 
 
}