lisy
2023-08-07 ceb1ff4dd962198868e63e659f1d96ea4052be25
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;
 
}