|
@@ -41,6 +41,12 @@ public class SampleSubmitVo {
|
|
|
@Size(max = 100, message = "申请人邮箱长度不能超过100个字符")
|
|
|
private String applicantEmail;
|
|
|
|
|
|
+ @Schema(description = "接收人id")
|
|
|
+ private Long receiveUserId;
|
|
|
+
|
|
|
+ @Schema(description = "接收人姓名")
|
|
|
+ private String receiveUserName;
|
|
|
+
|
|
|
@Schema(description = "申请时间", example = "2022-01-01")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate applyTime;
|