master
陈思豪 2024-08-08 11:17:06 +08:00
parent 12aa2d9656
commit 48da2c963b
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@ import java.util.stream.Collectors;
public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMapper ,OrderPayCustomer>
implements OrderPayCustomerService {
@Resource(type = OrderPayService.class)
@Autowired
private OrderPayService orderPayService;
@Autowired

View File

@ -6,9 +6,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.domain.OrderPayInfo;
import com.muyu.pay.mapper.OrderPayMapper;
import com.muyu.pay.service.OrderPayService;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class OrderPayServiceImpl extends ServiceImpl<OrderPayMapper, OrderPayInfo>implements OrderPayService {