办学质量监测教学评价系统
wzx
2025-03-21 5ca511582fec57e162e1783777a032e8e1ff4f77
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 org.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import org.ruoyi.common.tenant.core.TenantEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serial;
 
/**
 * 【请填写功能名称】对象 sys_user_group
 *
 * @author Lion Li
 * @date 2024-08-03
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("sys_user_group")
public class SysUserGroup extends TenantEntity {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 用户组名称
     */
    private String groupName;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 版本
     */
    @Version
    private Long version;
 
    /**
     * 删除标志(0代表存在 1代表删除)
     */
    @TableLogic
    private String delFlag;
 
    /**
     * 更新IP
     */
    private String updateIp;
 
 
}