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
package org.jeecg.modules.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.system.entity.MdcUserProduction;
import org.jeecg.modules.system.model.ProductionIdModel;
 
import java.util.List;
 
/**
 * @Description: 用户产线表
 * @author: LiuS
 * @create: 2023-03-27 11:56
 */
public interface IMdcUserProductionService extends IService<MdcUserProduction> {
 
    /**
     * 根据指定用户id查询产线信息
     */
    List<ProductionIdModel> queryProductionIdsOfUser(String userId);
 
    /**
     * 根据指定用户id查询产线id集合
     */
    List<String> queryProductionIdsByUserId(String userId);
}