fix
Helius
2021-07-22 740add0b62d86090d953ca0008163b988663ad65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.PayInfo;
import com.xzx.gc.model.admin.MoneyModel;
import com.xzx.gc.model.admin.PayInfoModel;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Repository
public interface PayInfoMapper extends GcMapper<PayInfo> {
 
    int payInfoAdd(Map map);
 
    PayInfo selectByOrderIdAndUserId(@Param("orderId")String orderId, @Param("userId")String userId, @Param("payType") String payType);
 
    int addPayInfo(PayInfoModel model);
 
 
 
 
}