package com.repair.services; import com.repair.model.pojo.RepairConsumables; import com.repair.model.pojo.RepairLeaveMessage; import com.baomidou.mybatisplus.extension.service.IService; import com.repair.model.result.PageUtils; import java.util.List; /** *

* 服务类 *

* * @author ceshi * @since 2023-07-20 */ public interface RepairLeaveMessageService extends IService { int insertRepairLeaveMessage(RepairLeaveMessage rns); int updateRepairLeaveMessage(RepairLeaveMessage rns); PageUtils queryPageRepairLeaveMessages(int currentPage, int pageCount, String name); int deleteRepairLeaveMessageById(int id); RepairLeaveMessage getRepairById(int id); List getRepairs(); boolean inserBatchLeaveMessage(List datas); List getRepairsByRecordIds(List recordIds); }