Blame view

AddCourseTreeNodeDTO.java 228 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.meishu.dto.course;


import com.meishu.model.CourseTreeDO;
import lombok.Data;

import java.util.List;

@Data
public class AddCourseTreeNodeDTO {

    private Long courseId;

    private List<Long> courseTreeDOS;

}