zss
2024-05-28 cd6a8e83f0864cb011a2719666f241e1217eb5a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
 
    int updateInspected(Integer id);
}