mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 20:35:35 +08:00
完成后台的线上课-学员api接口
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package xyz.playedu.api.request.backend;
|
||||
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author 杭州白书科技有限公司
|
||||
* @create 2023/3/24 16:22
|
||||
*/
|
||||
@Data
|
||||
public class CourseUserDestroyRequest {
|
||||
@NotNull(message = "ids参数不存在")
|
||||
private List<Integer> ids;
|
||||
}
|
||||
Reference in New Issue
Block a user