23 lines
430 B
Java
23 lines
430 B
Java
package com.ipsen.medical.dto;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class KnowledgeBaseDTO {
|
|
private Long id;
|
|
private String name;
|
|
private String type;
|
|
private String description;
|
|
private String dataSource;
|
|
private Integer priority;
|
|
private Boolean enabled;
|
|
private String configuration;
|
|
private LocalDateTime createdAt;
|
|
private LocalDateTime updatedAt;
|
|
}
|
|
|
|
|
|
|
|
|