admin
2019-11-06 c23bccf7f39ebae903cc20d255b014d3e80c0221
fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopOrderService.java
@@ -3,6 +3,7 @@
import java.math.BigDecimal;
import java.util.List;
import com.yeshi.fanli.entity.shop.BanLiShopGoodsSetsPay;
import com.yeshi.fanli.entity.shop.BanLiShopOrder;
import com.yeshi.fanli.exception.redpack.RedPackBalanceException;
import com.yeshi.fanli.exception.shop.BanLiShopOrderException;
@@ -22,6 +23,16 @@
    * @throws BanLiShopOrderException
    */
   public void addOrder(BanLiShopOrder order) throws BanLiShopOrderException;
   /**
    * 构造订单
    * @param pay
    * @param uid
    * @return
    * @throws BanLiShopOrderException
    */
   public BanLiShopOrder createOrder(Long goodsSetPayId,String chargeAccount,Long uid) throws BanLiShopOrderException;;
   /**
    * 使订单失效
@@ -90,5 +101,12 @@
    * @param order
    */
   public void udpateSelectiveByPrimaryKey(BanLiShopOrder order);
   /**
    * 根据订单号查询
    * @param orderNo
    * @return
    */
   public BanLiShopOrder selectByOrderNo(String orderNo);
}