All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.mp.card.bean.Coupon Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.mp.card.bean;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * 优惠券
 * Created by exizhai on 11/28/2015.
 */
public class Coupon extends AbstractCard {

    /**
     * 优惠券专用,填写优惠详情。
     */
    @JsonProperty("default_detail")
    private String detail;

    public String getDetail() {
        return detail;
    }

    public void setDetail(String detail) {
        this.detail = detail;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy