|
@@ -0,0 +1,20 @@
|
|
|
+package com.xjrsoft.module.evaluate.vo;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+* @title: 被评价对象表单出参
|
|
|
+* @Author dzx
|
|
|
+* @Date: 2024-01-16
|
|
|
+* @Version 1.0
|
|
|
+*/
|
|
|
+@Data
|
|
|
+public class ClassTeachersListVo {
|
|
|
+
|
|
|
+ @ApiModelProperty("班级id")
|
|
|
+ private Long classId;
|
|
|
+
|
|
|
+ @ApiModelProperty("教师userid")
|
|
|
+ private String teacherId;
|
|
|
+}
|