refactor(bpm): 移除 BpmOAWorkOrderTrackReqDTO 中 operationType 的 @NotEmpty 注解

移除了 BpmOAWorkOrderTrackReqDTO 类中 operationType 字段的 @NotEmpty 注解,保留其他原有逻辑。
This commit is contained in:
aikai 2025-06-26 10:02:06 +08:00
parent d882806df6
commit 57da6321bf

View File

@ -15,7 +15,6 @@ public class BpmOAWorkOrderTrackReqDTO extends PageParam {
private Long workOrderId;
@Schema(description = "操作类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "PROCESS")
@NotEmpty(message = "操作类型不能为空")
private String operationType;
}