package com.sincere.student.model.yx; import java.util.Date; public class SysYxSchoolConsult { private Integer id; private Integer schoolId; private Integer columnType; private String titleDesc; private String videoUrl; private String context; private String imgUrl; private Integer sort; private Integer status; private Integer readNumber; private String background; private Date createTime; private String modelList; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getSchoolId() { return schoolId; } public void setSchoolId(Integer schoolId) { this.schoolId = schoolId; } public Integer getColumnType() { return columnType; } public void setColumnType(Integer columnType) { this.columnType = columnType; } public String getVideoUrl() { return videoUrl; } public void setVideoUrl(String videoUrl) { this.videoUrl = videoUrl == null ? null : videoUrl.trim(); } public String getContext() { return context; } public void setContext(String context) { this.context = context == null ? null : context.trim(); } public String getImgUrl() { return imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl == null ? null : imgUrl.trim(); } public Integer getSort() { return sort; } public void setSort(Integer sort) { this.sort = sort; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Integer getReadNumber() { return readNumber; } public void setReadNumber(Integer readNumber) { this.readNumber = readNumber; } public String getBackground() { return background; } public void setBackground(String background) { this.background = background == null ? null : background.trim(); } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getModelList() { return modelList; } public void setModelList(String modelList) { this.modelList = modelList == null ? null : modelList.trim(); } public String getTitleDesc() { return titleDesc; } public void setTitleDesc(String titleDesc) { this.titleDesc = titleDesc; } private String province; private String city; private String area; public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getArea() { return area; } public void setArea(String area) { this.area = area; } }