Logo

GitLab

Sign in

朱子纯 / xlyNewAi

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • xlyNewAi
  • ..
  • bean
  • HealthStatus.java
  • Initial commit: xlyAi ERP AI service (Spring Boot + LangChain4j)
    62635218
    zichun authored
    2026-07-20 09:49:08 +0800  
    Browse Code »
HealthStatus.java 278 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.xly.tts.bean;

/**
 * 健康状态内部类
 */
@lombok.Data
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
public  class HealthStatus {
    private String javaService;
    private String pythonService;
    private long timestamp;
    private String message;
}