报告模板新增模板内容

This commit is contained in:
2026-01-07 14:56:23 +08:00
parent 8908ad83e1
commit 2ef69adbb1
2 changed files with 7 additions and 0 deletions

View File

@@ -22,6 +22,9 @@ public class ReportTemplateDto {
@Schema(description = "报告模版版本") @Schema(description = "报告模版版本")
private String templateVersion; private String templateVersion;
@Schema(description = "报告模版内容")
private String templateContent;
@Schema(description = "报告模板绑定文件ID") @Schema(description = "报告模板绑定文件ID")
private Long fileId; private Long fileId;

View File

@@ -36,6 +36,10 @@ public class SimulationReportTemplate implements Serializable {
@TableField("templateVersion") @TableField("templateVersion")
private String templateVersion; private String templateVersion;
@ApiModelProperty(value = "报告模版内容")
@TableField("templateContent")
private String templateContent;
@ApiModelProperty(value = "报告模板绑定文件ID") @ApiModelProperty(value = "报告模板绑定文件ID")
@TableField("fileId") @TableField("fileId")
private Long fileId; private Long fileId;