123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.qxgmat.dto.response;
- import com.alibaba.fastjson.JSONObject;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.CoursePackage;
- import com.qxgmat.dto.extend.CommentExtendDto;
- import com.qxgmat.dto.extend.CourseExtendDto;
- import java.math.BigDecimal;
- import java.util.Collection;
- import java.util.Date;
- @Dto(entity = CoursePackage.class)
- public class CoursePackageListDto {
- private Integer id;
- private Integer structId;
- private String title;
- private BigDecimal price;
- private Integer[] courseIds;
- private Collection<CourseExtendDto> courses;
- private Collection<CommentExtendDto> comments;
- private JSONObject gift;
- private Integer saleNumber;
- private Date createTime;
- private Date updateTime;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getStructId() {
- return structId;
- }
- public void setStructId(Integer structId) {
- this.structId = structId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public BigDecimal getPrice() {
- return price;
- }
- public void setPrice(BigDecimal price) {
- this.price = price;
- }
- public Integer[] getCourseIds() {
- return courseIds;
- }
- public void setCourseIds(Integer[] courseIds) {
- this.courseIds = courseIds;
- }
- public JSONObject getGift() {
- return gift;
- }
- public void setGift(JSONObject gift) {
- this.gift = gift;
- }
- public Integer getSaleNumber() {
- return saleNumber;
- }
- public void setSaleNumber(Integer saleNumber) {
- this.saleNumber = saleNumber;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public Collection<CourseExtendDto> getCourses() {
- return courses;
- }
- public void setCourses(Collection<CourseExtendDto> courses) {
- this.courses = courses;
- }
- public Collection<CommentExtendDto> getComments() {
- return comments;
- }
- public void setComments(Collection<CommentExtendDto> comments) {
- this.comments = comments;
- }
- }
|