| | |
| | | package com.yeshi.fanli.dto.mq.order.body;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
|
| | |
|
| | | public class BanLiShopOrderMQMsg extends BaseMQMsgBody {
|
| | | private Long orderId;// 订单ID
|
| | | private Long uid;// 用户ID
|
| | | private BigDecimal money;// 付款金额
|
| | |
|
| | | public BigDecimal getMoney() {
|
| | | return money;
|
| | | }
|
| | |
|
| | | public void setMoney(BigDecimal money) {
|
| | | this.money = money;
|
| | | }
|
| | |
|
| | | public BanLiShopOrderMQMsg(Long orderId, Long uid) {
|
| | | super();
|
| | |
| | | this.uid = uid;
|
| | | }
|
| | |
|
| | | public BanLiShopOrderMQMsg(Long orderId, Long uid, BigDecimal money) {
|
| | | this.money = money;
|
| | | this.orderId = orderId;
|
| | | this.uid = uid;
|
| | | }
|
| | |
|
| | | public BanLiShopOrderMQMsg() {
|
| | | super();
|
| | | }
|