package com.qxgmat.dto.extend; import com.nuliji.tools.annotation.Dto; import com.qxgmat.data.dao.entity.Course; import java.math.BigDecimal; @Dto(entity = Course.class) public class CourseExtendDto { private Integer id; private Integer structId; private Integer parentStructId; private String courseModule; private String title; private String teacher; private String wechatAvatar; private BigDecimal price; private Integer noNumber; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Integer getNoNumber() { return noNumber; } public void setNoNumber(Integer noNumber) { this.noNumber = noNumber; } public String getTeacher() { return teacher; } public void setTeacher(String teacher) { this.teacher = teacher; } public BigDecimal getPrice() { return price; } public void setPrice(BigDecimal price) { this.price = price; } public String getWechatAvatar() { return wechatAvatar; } public void setWechatAvatar(String wechatAvatar) { this.wechatAvatar = wechatAvatar; } public Integer getStructId() { return structId; } public void setStructId(Integer structId) { this.structId = structId; } public Integer getParentStructId() { return parentStructId; } public void setParentStructId(Integer parentStructId) { this.parentStructId = parentStructId; } public String getCourseModule() { return courseModule; } public void setCourseModule(String courseModule) { this.courseModule = courseModule; } }