123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- package com.ygj.yuemum.domain.college;
- public class CollegeCurriculumPractice {
- private Integer id;
- private String c_code;
- private String c_name;
- private String c_type;
- private Integer c_step;
- private String c_desc;
- private String c_content;
- private String city;
- private String branches;
- private String address;
- private String startdate;
- private String enddate;
- private String deadline;
- private Integer maximum;
- private Integer pcount;
- private Integer credit;
- private String cd_code;
- private String status;
- private String qrcode;
- private Integer page;
- private Integer bookingid;
- private String openid;
- private String learningStatus;
- private Integer limit;
- private String img_href;
- public String getOpenid() {
- return openid;
- }
- public void setOpenid(String openid) {
- this.openid = openid;
- }
- public String getLearningStatus() {
- return learningStatus;
- }
- public void setLearningStatus(String learningStatus) {
- this.learningStatus = learningStatus;
- }
- public Integer getBookingid() {
- return bookingid;
- }
- public void setBookingid(Integer bookingid) {
- this.bookingid = bookingid;
- }
- public String getImg_href() {
- return img_href;
- }
- public void setImg_href(String img_href) {
- this.img_href = img_href;
- }
- public String getCd_code() {
- return cd_code;
- }
- public void setCd_code(String cd_code) {
- this.cd_code = cd_code;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public Integer getPcount() {
- return pcount;
- }
- public void setPcount(Integer pcount) {
- this.pcount = pcount;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getC_code() {
- return c_code;
- }
- public void setC_code(String c_code) {
- this.c_code = c_code;
- }
- public String getC_name() {
- return c_name;
- }
- public void setC_name(String c_name) {
- this.c_name = c_name;
- }
- public String getC_type() {
- return c_type;
- }
- public void setC_type(String c_type) {
- this.c_type = c_type;
- }
- public Integer getC_step() {
- return c_step;
- }
- public void setC_step(Integer c_step) {
- this.c_step = c_step;
- }
- public String getC_desc() {
- return c_desc;
- }
- public void setC_desc(String c_desc) {
- this.c_desc = c_desc;
- }
- public String getC_content() {
- return c_content;
- }
- public void setC_content(String c_content) {
- this.c_content = c_content;
- }
- public String getCity() {
- return city;
- }
- public void setCity(String city) {
- this.city = city;
- }
- public String getBranches() {
- return branches;
- }
- public void setBranches(String branches) {
- this.branches = branches;
- }
- public String getStartdate() {
- return startdate;
- }
- public void setStartdate(String startdate) {
- this.startdate = startdate;
- }
- public String getEnddate() {
- return enddate;
- }
- public void setEnddate(String enddate) {
- this.enddate = enddate;
- }
- public String getDeadline() {
- return deadline;
- }
- public void setDeadline(String deadline) {
- this.deadline = deadline;
- }
- public Integer getMaximum() {
- return maximum;
- }
- public void setMaximum(Integer maximum) {
- this.maximum = maximum;
- }
- public Integer getCredit() {
- return credit;
- }
- public void setCredit(Integer credit) {
- this.credit = credit;
- }
- public String getQrcode() {
- return qrcode;
- }
- public void setQrcode(String qrcode) {
- this.qrcode = qrcode;
- }
- public Integer getPage() {
- return page;
- }
- public void setPage(Integer page) {
- this.page = page;
- }
- public Integer getLimit() {
- return limit;
- }
- public void setLimit(Integer limit) {
- this.limit = limit;
- }
- }
|