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

weixin.popular.bean.paymch.Detail Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.32
Show newest version
package weixin.popular.bean.paymch;

import java.util.List;

import javax.xml.bind.annotation.adapters.XmlAdapter;

import com.alibaba.fastjson.JSON;

/**
 * 统一下单detail json 数据对象
* 注意:单品总金额应<=订单总金额total_fee,否则会无法享受优惠。 * * @author LiYi * */ public class Detail { private Integer cost_price; // 可选 32 // 订单原价,商户侧一张小票订单可能被分多次支付,订单原价用于记录整张小票的支付金额。当订单原价与支付金额不相等则被判定为拆单,无法享受优惠。 private String receipt_id; // 可选 32 商家小票ID private List goods_detail;// 服务商必填 public Integer getCost_price() { return cost_price; } public void setCost_price(Integer cost_price) { this.cost_price = cost_price; } public String getReceipt_id() { return receipt_id; } public void setReceipt_id(String receipt_id) { this.receipt_id = receipt_id; } public List getGoods_detail() { return goods_detail; } public void setGoods_detail(List goods_detail) { this.goods_detail = goods_detail; } static class JsonXmlAdapter extends XmlAdapter { @Override public String marshal(Detail v) throws Exception { return ""; } @Override public Detail unmarshal(String v) throws Exception { return JSON.parseObject(v, Detail.class); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy