value
2024-04-30 ec6c3bc0b778178b2518302ffc9099ac8f6cc8a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yuanchu.mom.service;
 
import com.yuanchu.mom.pojo.InsProduct;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
* @author Administrator
* @description 针对表【ins_product(检验项目)】的数据库操作Service
* @createDate 2024-03-17 23:57:39
*/
public interface InsProductService extends IService<InsProduct> {
 
    int selectOrderManDay(Integer orderId);
 
}