liujie
2023-08-09 efc09045da6ca5fc06ff9221723ed9ddf81e568e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dsh.account.model.vo.classDetails;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class WeekedCourse {
 
 
    @ApiModelProperty(value = "课包列表")
    private List<CourseVenue> details;
 
}