“djh”
2024-12-04 d1549b8445c65a6775cf1ba093f5040ace0f87e7
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
package com.gkhy.huataiFourierSpecialGasMonitor.domain.account.entity;
 
import javax.persistence.*;
import java.time.LocalDateTime;
 
@Entity
@Table(name = "sys_role_menu_bind")
public class RoleMenuBind {
 
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
 
    @Column
    private Long roleId;
 
    @Column
    private Long menuItemId;
 
    @Column
    private LocalDateTime gmtCreate;
 
    @Column
    private LocalDateTime gmtModified;
 
    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 getMenuItemId() {
        return menuItemId;
    }
 
    public void setMenuItemId(Long menuItemId) {
        this.menuItemId = menuItemId;
    }
 
    public LocalDateTime getGmtCreate() {
        return gmtCreate;
    }
 
    public void setGmtCreate(LocalDateTime gmtCreate) {
        this.gmtCreate = gmtCreate;
    }
 
    public LocalDateTime getGmtModified() {
        return gmtModified;
    }
 
    public void setGmtModified(LocalDateTime gmtModified) {
        this.gmtModified = gmtModified;
    }
}