admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/dto/mq/order/body/BanLiShopOrderMQMsg.java
@@ -1,10 +1,21 @@
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();
@@ -12,6 +23,12 @@
      this.uid = uid;
   }
   public BanLiShopOrderMQMsg(Long orderId, Long uid, BigDecimal money) {
      this.money = money;
      this.orderId = orderId;
      this.uid = uid;
   }
   public BanLiShopOrderMQMsg() {
      super();
   }