12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.ygj.yuemum.domain.wxmini;
- public class WXPromotion {
- private Integer id;
- private String wp_name;
- private String wp_desc;
- private String wp_url;
- private String wp_href;
- private String wp_startdate;
- private String wp_enddate;
- private String wp_isexpire;
- public String getWp_isexpire() {
- return wp_isexpire;
- }
- public void setWp_isexpire(String wp_isexpire) {
- this.wp_isexpire = wp_isexpire;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getWp_name() {
- return wp_name;
- }
- public void setWp_name(String wp_name) {
- this.wp_name = wp_name;
- }
- public String getWp_desc() {
- return wp_desc;
- }
- public void setWp_desc(String wp_desc) {
- this.wp_desc = wp_desc;
- }
- public String getWp_url() {
- return wp_url;
- }
- public void setWp_url(String wp_url) {
- this.wp_url = wp_url;
- }
- public String getWp_href() {
- return wp_href;
- }
- public void setWp_href(String wp_href) {
- this.wp_href = wp_href;
- }
- public String getWp_startdate() {
- return wp_startdate;
- }
- public void setWp_startdate(String wp_startdate) {
- this.wp_startdate = wp_startdate;
- }
- public String getWp_enddate() {
- return wp_enddate;
- }
- public void setWp_enddate(String wp_enddate) {
- this.wp_enddate = wp_enddate;
- }
- }
|