Blame view

AddStudentAuthenDTO.java 270 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.meishu.dto.course;

import lombok.Data;

import java.util.List;

@Data
public class AddStudentAuthenDTO {

    private List<Long> ids;

    private String startDate;

    private String endDate;

    private Long courseId;

    private Long administerId;

}