package org.jeecg.modules.base.mapper;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
import org.jeecg.modules.base.entity.UserFactory;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
/**
|
* @Description: 用户工厂/车间/产线关系
|
* @Author: jeecg-boot
|
* @Date: 2025-06-24
|
* @Version: V1.0
|
*/
|
public interface UserFactoryMapper extends BaseMapper<UserFactory> {
|
|
/**
|
* 根据指定用户id查询产线id集合
|
*/
|
List<String> queryFactoryIdsByUserId(@Param("userId") String userId);
|
}
|