parent
6c47e0c59e
commit
a3922d8c2d
@ -0,0 +1,15 @@
|
||||
package cn.teammodel.common;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
/**
|
||||
* @author winter
|
||||
* @create 2023-12-04 9:55
|
||||
*/
|
||||
@Data
|
||||
public class IdRequest {
|
||||
@NotBlank(message = "id 不能为空")
|
||||
private String id;
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package cn.teammodel.model.dto.Appraise;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* @author winter
|
||||
* @create 2023-11-22 16:16
|
||||
*/
|
||||
@Data
|
||||
public class RecallVoteDto {
|
||||
@NotNull
|
||||
@ApiModelProperty("学生评价记录的文档id")
|
||||
String recordId;
|
||||
@NotNull
|
||||
@ApiModelProperty("学生评价记录的具体节点id")
|
||||
String nodeId;
|
||||
}
|
Loading…
Reference in new issue