罗媛媛
2024-04-01 edbb9450c78019e7cea4bfb0d0496782e90a4a43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.InsProduct;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
* @author Administrator
* @description 针对表【ins_product(检验项目)】的数据库操作Mapper
* @createDate 2024-03-08 09:45:03
* @Entity com.yuanchu.mom.pojo.InsProduct
*/
public interface InsProductMapper extends BaseMapper<InsProduct> {
 
    int selectOrderManDay(Integer orderId);
 
}