123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package com.ygj.yuemum.domain.college;
- public class CollegePresentScholarships {
- private Integer id;
- private String name;
- private Integer level;
- private Integer type;
- private String desc;
- private Integer coupon_id;
- private Integer scholarships;
- private String list_img_href;
- private String detail_img_href;
- private String redeem_img_href;
- private Integer postage;
- private Integer count;
- private Integer page;
- private Integer limit;
- public String getDesc() {
- return desc;
- }
- public void setDesc(String desc) {
- this.desc = desc;
- }
- public String getRedeem_img_href() {
- return redeem_img_href;
- }
- public void setRedeem_img_href(String redeem_img_href) {
- this.redeem_img_href = redeem_img_href;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Integer getLevel() {
- return level;
- }
- public void setLevel(Integer level) {
- this.level = level;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Integer getCoupon_id() {
- return coupon_id;
- }
- public void setCoupon_id(Integer coupon_id) {
- this.coupon_id = coupon_id;
- }
- public Integer getScholarships() {
- return scholarships;
- }
- public void setScholarships(Integer scholarships) {
- this.scholarships = scholarships;
- }
- public String getList_img_href() {
- return list_img_href;
- }
- public void setList_img_href(String list_img_href) {
- this.list_img_href = list_img_href;
- }
- public String getDetail_img_href() {
- return detail_img_href;
- }
- public void setDetail_img_href(String detail_img_href) {
- this.detail_img_href = detail_img_href;
- }
- public Integer getPostage() {
- return postage;
- }
- public void setPostage(Integer postage) {
- this.postage = postage;
- }
- public Integer getCount() {
- return count;
- }
- public void setCount(Integer count) {
- this.count = count;
- }
- 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;
- }
- }
|