SystemModel.java 461 B

123456789101112131415161718192021
  1. package jnpf.base.model.monitor;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/12 15:31
  10. */
  11. @Data
  12. public class SystemModel {
  13. @Schema(description = "系统")
  14. private String os;
  15. @Schema(description = "服务器IP")
  16. private String ip;
  17. @Schema(description = "运行时间")
  18. private String day;
  19. }