You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobacco/bs-admin/src/main/java/com/bs/df/service/IDfBrokerService.java

48 lines
1.0 KiB

package com.bs.df.service;
import com.github.yulichang.base.MPJBaseService;
import com.bs.df.domain.DfBroker;
import java.util.List;
/**
* Service
*
* @author bs
* @date 2024-04-06
*/
public interface IDfBrokerService extends MPJBaseService<DfBroker>{
/**
* id
* @return
*/
public List<Long> filterByUser();
/**
* id
* @return
*/
public List<Long> filterByUserId(Long userId);
/**
* id
* @return
*/
public List<DfBroker> findAllSubordinates(Long brokerId);
/**
* idid
* @return id
*/
public List<Long> getProductIdsByBrokerId();
10 months ago
/**
* idid
* @return id
*/
public List<Long> getProductIdsByBrokerIdByUserId(Long userId);
}