Lius
8 天以前 0a19d4923b0a048aee0cda91c37f25bc6e140d54
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
26
27
28
29
30
31
32
33
34
package org.jeecg.modules.system.service;
 
import org.jeecg.modules.system.entity.BaseFactoryUser;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.system.model.EamBaseFactoryIdModel;
import org.jeecg.modules.system.model.EamBaseFactoryIdModel;
 
import java.util.List;
 
/**
 * @Description: 设备车间管理与用户
 * @Author: jeecg-boot
 * @Date:   2025-06-30
 * @Version: V1.0
 */
public interface IBaseFactoryUserService extends IService<BaseFactoryUser> {
 
    /**
     * 根据指定用户id查询产线信息
     */
    List<EamBaseFactoryIdModel> queryEamBaseFactoryIdsOfUser(String userId);
 
    /**
     * 根据指定用户id查询EAM中心信息
     */
    List<String> queryEamCenterIdsByUserId(String userId);
 
    /**
     * 添加单个用户与一组中心
     * @param userId
     * @param factoryIds
     */
    void addUserFactory(String userId, String factoryIds);
}