package com.matrix.system.hive.service; import com.matrix.system.hive.bean.SysOrderFlow; import com.matrix.system.hive.plugin.util.BaseServices; import java.util.List; /** * @author wzy * @date 2021-01-11 **/ public interface SysOrderFlowService extends BaseServices { public List findByOrderId(Long orderId); public List findPayMethodsAmount(Long orderId); }