lxw
2022-09-14 94e9ba643b44e235f8eadf30261ec6607521cd5e
1
2
3
4
5
6
7
8
9
10
11
12
package com.whyc.mapper;
 
import com.whyc.pojo.Product;
 
import java.util.List;
 
public interface ProductMapper extends CustomMapper<Product>{
    // 5.在product中插入设定可用的pHistory
    int insertPselectPH(Integer id);
   //查询出所有的产品信息(分页加模糊查询<产品的编码,型号,名字,定制表编号>
    List<Product> getAllProduct(String subCode, String parentCode, String parentName, String parentModel, String customCode);
}