Lius
2024-10-24 a7a4e0e6ae09c720e50dc22fc50c67519414067c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.mdc.entity.MdcComponentInfo;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * @Description: 零件表
 * @Author: lius
 * @Date: 2024-10-21
 * @Version: V1.0
 */
public interface IMdcComponentInfoService extends IService<MdcComponentInfo> {
 
    IPage<MdcComponentInfo> pageList(Page<MdcComponentInfo> page, MdcComponentInfo mdcComponentInfo, HttpServletRequest req);
 
    MdcComponentInfo findByComponentNo(String equipmentId, String productNo);
}