晏有为
2024-05-27 169208b55df32e15d66ef7b32882143556a58adb
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);
}