chenjiahe
2021-12-14 00565f063877182ef44aec700cffacf00c7a6d26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hx.phip.order.service;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.hx.common.service.CommonService;
import com.hx.phiappt.model.SysAdmin;
import com.hx.phiappt.model.order.OrderDeveloper;
import com.hx.phiappt.model.order.OrderItem;
import com.hx.phiappt.model.order.OrdersTotal;
 
import java.util.List;
 
public interface OrderService {
    /*创建订单*/
    void add(OrdersTotal ordersTotal, List<OrderItem> items, Integer type, List<OrderDeveloper> orderDeveloperList,String operatorId,String shopId);
 
    void orderPay(Integer type, String orderId, String total, JSONArray amountList,String operatorId) throws Exception;
    /*测试充值金额*/
    void test(String value,String storeValue,String userId);
}