24 lines
512 B
Java
24 lines
512 B
Java
package com.guwan.backend.pojo.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
public class CourseCenterVO {
|
|
private String id;
|
|
private String title;
|
|
private String description;
|
|
private String levelId;
|
|
private String typeId;
|
|
private String categoryId;
|
|
private String coverImg;
|
|
private BigDecimal rating;
|
|
private Integer ratingCount;
|
|
private BigDecimal price;
|
|
private Integer studentCount;
|
|
private String liveUrl;
|
|
private String teacher;
|
|
|
|
}
|