value
2024-06-20 a680563f53b7b5db7507dd0ff6027f724567ea2b
inspect-server/src/main/java/com/yuanchu/mom/service/InsProductService.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,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);
}