feat:报告-与流程对接

This commit is contained in:
FCL
2025-10-21 16:08:08 +08:00
parent ea135d3fb7
commit 024673c75b
6 changed files with 90 additions and 60 deletions

View File

@@ -15,7 +15,7 @@ import static com.zt.plat.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH
public class ReportDocumentMainPageReqVO extends PageParam { public class ReportDocumentMainPageReqVO extends PageParam {
@Schema(description = "流程实例ID", example = "10765") @Schema(description = "流程实例ID", example = "10765")
private Long flowInstanceId; private String flowInstanceId;
@Schema(description = "报告类型ID", example = "2124") @Schema(description = "报告类型ID", example = "2124")
private Long reportDocumentTypeId; private Long reportDocumentTypeId;

View File

@@ -19,7 +19,7 @@ public class ReportDocumentMainRespVO {
@Schema(description = "流程实例ID", example = "10765") @Schema(description = "流程实例ID", example = "10765")
@ExcelProperty("流程实例ID") @ExcelProperty("流程实例ID")
private Long flowInstanceId; private String flowInstanceId;
@Schema(description = "报告类型ID", example = "2124") @Schema(description = "报告类型ID", example = "2124")
@ExcelProperty("报告类型ID") @ExcelProperty("报告类型ID")

View File

@@ -15,7 +15,7 @@ public class ReportDocumentMainSaveReqVO {
private Long id; private Long id;
@Schema(description = "流程实例ID", example = "10765") @Schema(description = "流程实例ID", example = "10765")
private Long flowInstanceId; private String flowInstanceId;
@Schema(description = "报告类型ID", example = "2124") @Schema(description = "报告类型ID", example = "2124")
private Long reportDocumentTypeId; private Long reportDocumentTypeId;

View File

@@ -35,7 +35,7 @@ public class ReportDocumentMainDO extends BusinessBaseDO {
* 流程实例ID * 流程实例ID
*/ */
@TableField("FLW_INSC_ID") @TableField("FLW_INSC_ID")
private Long flowInstanceId; private String flowInstanceId;
/** /**
* 报告类型ID * 报告类型ID
*/ */