ChannelProduct.java 3.26 KB
package com.sincere.wechatbusiness.model;

import java.util.Date;

public class ChannelProduct {
    private Integer id;

    private Integer channelId;

    private Integer productId;

    private String productName;

    private String price;

    private String imgUrl;

    private String ChannelPrice;

    private String caption;

    private Integer state;

    private Date createTime;

    private String promotionPrice ;
    private Date endTime ;
    private String title ;

    private String channelTitle ;
    private String channelImg ;
    private String channelRequire ;
    private String channelExplain ;

    public String getChannelTitle() {
        return channelTitle;
    }

    public void setChannelTitle(String channelTitle) {
        this.channelTitle = channelTitle;
    }

    public String getChannelImg() {
        return channelImg;
    }

    public void setChannelImg(String channelImg) {
        this.channelImg = channelImg;
    }

    public String getChannelRequire() {
        return channelRequire;
    }

    public void setChannelRequire(String channelRequire) {
        this.channelRequire = channelRequire;
    }

    public String getChannelExplain() {
        return channelExplain;
    }

    public void setChannelExplain(String channelExplain) {
        this.channelExplain = channelExplain;
    }

    public String getPromotionPrice() {
        return promotionPrice;
    }

    public void setPromotionPrice(String promotionPrice) {
        this.promotionPrice = promotionPrice;
    }

    public Date getEndTime() {
        return endTime;
    }

    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getChannelId() {
        return channelId;
    }

    public void setChannelId(Integer channelId) {
        this.channelId = channelId;
    }

    public Integer getProductId() {
        return productId;
    }

    public void setProductId(Integer productId) {
        this.productId = productId;
    }

    public String getProductName() {
        return productName;
    }

    public void setProductName(String productName) {
        this.productName = productName;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }

    public String getImgUrl() {
        return imgUrl;
    }

    public void setImgUrl(String imgUrl) {
        this.imgUrl = imgUrl;
    }

    public String getChannelPrice() {
        return ChannelPrice;
    }

    public void setChannelPrice(String channelPrice) {
        ChannelPrice = channelPrice;
    }

    public String getCaption() {
        return caption;
    }

    public void setCaption(String caption) {
        this.caption = caption;
    }

    public Integer getState() {
        return state;
    }

    public void setState(Integer state) {
        this.state = state;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}