zss
2024-07-26 ff4d45d57c3d1a1c8d4218dd83023cb7e4c34d7e
cnas-server/src/main/java/com/yuanchu/mom/service/SealService.java
@@ -6,18 +6,18 @@
import com.yuanchu.mom.pojo.Laboratory;
import com.yuanchu.mom.pojo.Seal;
import java.util.List;
import java.util.Map;
public interface SealService extends IService<Seal> {
    //新增
    int addSeal(Seal seal);
    //删除
    int delSeal(int id);
    //更新
    int upSeal(Seal seal);
    //查询
    Map<String, Object> selectSeal(Page page, Seal seal);
    List<Laboratory>  Laboratory(Integer id);
}