12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.ygj.yuemum.domain.promotion;
- public class PromotionDC {
- private Integer id;
- private String pd_title;
- private String pd_headimg;
- private String pd_startdate;
- private String pd_enddate;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getPd_title() {
- return pd_title;
- }
- public void setPd_title(String pd_title) {
- this.pd_title = pd_title;
- }
- public String getPd_headimg() {
- return pd_headimg;
- }
- public void setPd_headimg(String pd_headimg) {
- this.pd_headimg = pd_headimg;
- }
- public String getPd_startdate() {
- return pd_startdate;
- }
- public void setPd_startdate(String pd_startdate) {
- this.pd_startdate = pd_startdate;
- }
- public String getPd_enddate() {
- return pd_enddate;
- }
- public void setPd_enddate(String pd_enddate) {
- this.pd_enddate = pd_enddate;
- }
- }
|