|
|
@@ -33,7 +33,7 @@ public class OaUniversalSaveReqVO {
|
|
|
@Schema(description = "申请用户账号uuid", example = "28769")
|
|
|
private String userUuid;
|
|
|
|
|
|
- @Schema(description = "部门id", example = "12910")
|
|
|
+ @Schema(description = "部门id", example = "1")
|
|
|
private Long deptId;
|
|
|
|
|
|
@Schema(description = "部门uuid", example = "18681")
|
|
|
@@ -42,13 +42,15 @@ public class OaUniversalSaveReqVO {
|
|
|
@Schema(description = "职位")
|
|
|
private String position;
|
|
|
|
|
|
- @Schema(description = "申请事项标题")
|
|
|
+ @Schema(description = "申请事项标题", example = "申请事项标题,最多20字")
|
|
|
+ @NotNull(message = "申请事项标题不能为空")
|
|
|
private String title;
|
|
|
|
|
|
- @Schema(description = "详细描述", example = "随便")
|
|
|
+ @Schema(description = "详细描述", example = "详细描述,最多200字")
|
|
|
+ @NotNull(message = "详细描述不能为空")
|
|
|
private String description;
|
|
|
|
|
|
- @Schema(description = "备注")
|
|
|
+ @Schema(description = "备注", example = "备注,最多200字")
|
|
|
private String remarks;
|
|
|
|
|
|
@Schema(description = "流程实例id", example = "18345")
|
|
|
@@ -72,7 +74,7 @@ public class OaUniversalSaveReqVO {
|
|
|
@Schema(description = "最后审核时间")
|
|
|
private LocalDateTime finalAuditDate;
|
|
|
|
|
|
- @Schema(description = "数据来源,0流程添加、1手动添加")
|
|
|
+ @Schema(description = "数据来源,0流程添加、1手动添加", example = "0")
|
|
|
private String infoSource;
|
|
|
|
|
|
|