无关风月
2025-05-06 25d4e8cb127912e293a593b3469d15079646028e
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
package com.ruoyi.system.api.vo;
 
import com.ruoyi.system.api.domain.SysLoginLog;
import com.ruoyi.system.api.domain.SysOperLog;
import com.ruoyi.system.api.domain.SysRole;
import com.ruoyi.system.api.domain.SysUser;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.expression.spel.ast.Operator;
 
import java.util.List;
 
@Data
@ApiModel(value = "GovernmentCloudSystemVO对象",description = "System政务云上传数据VO")
public class GovernmentCloudSystemVO {
 
    @ApiModelProperty(value = "登录日志")
    private List<SysLoginLog> loginLogs;
    @ApiModelProperty(value = "操作日志")
    private List<SysOperLog> sysOperLogs;
    @ApiModelProperty(value = "角色")
    private List<SysRole> sysRoles;
    @ApiModelProperty(value = "系统用户")
    private List<SysUser> sysUsers;
 
 
 
 
 
 
 
 
 
 
}