| /** | 
|  * Copyright (c) 2018 人人开源 All rights reserved. | 
|  * | 
|  * https://www.renren.io | 
|  * | 
|  * 版权所有,侵权必究! | 
|  */ | 
|   | 
| package com.zt.modules.sys.dto; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * 系统参数 | 
|  * | 
|  * @author hehz | 
|  * @since 1.0.0 | 
|  */ | 
| @Data | 
| @ApiModel(value = "系统数据") | 
| public class SystemDto implements Serializable { | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     private Long sysTime; | 
|     private String osName; | 
|     private String osArch; | 
|     private String osVersion; | 
|     private String userLanguage; | 
|     private String userDir; | 
|     private Long totalPhysical; | 
|     private Long freePhysical; | 
|     private BigDecimal memoryRate; | 
|     private Integer processors; | 
|     private String jvmName; | 
|     private String javaVersion; | 
|     private String javaHome; | 
|     private Long javaTotalMemory; | 
|     private Long javaFreeMemory; | 
|     private Long javaMaxMemory; | 
|     private String userName; | 
|     private BigDecimal systemCpuLoad; | 
|     private String userTimezone; | 
|   | 
| } |