This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.supervision.vo.manage;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
* @Author:longbao
* @Date:2024/11/14 9:32
* @Description: 生成病历模型提示词
*/
@Data
public class MedicalRecCreateAiManageVO {
@Schema(description = "病例id")
private String medicalRecId;
@Schema(description = "通用模板属性")
private String commonModelParam;
@Schema(description = "属性")
private List<MedicalRecCreateListAiManageVO> medicalRecCreateListAiManageVOS;
}