package com.ltkj.hosp.mapper; import java.util.List; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjDiscardInspection; import org.apache.ibatis.annotations.Mapper; /** * 弃检Mapper接口 * * @author ltkj_赵佳豪&李格 * @date 2023-03-24 */ @Mapper public interface TjDiscardInspectionMapper extends BaseMapper { /** * 查询弃检 * * @param id 弃检主键 * @return 弃检 */ public TjDiscardInspection selectTjDiscardInspectionById(Long id); /** * 查询弃检列表 * * @param tjDiscardInspection 弃检 * @return 弃检集合 */ public List selectTjDiscardInspectionList(TjDiscardInspection tjDiscardInspection); /** * 新增弃检 * * @param tjDiscardInspection 弃检 * @return 结果 */ public int insertTjDiscardInspection(TjDiscardInspection tjDiscardInspection); /** * 修改弃检 * * @param tjDiscardInspection 弃检 * @return 结果 */ public int updateTjDiscardInspection(TjDiscardInspection tjDiscardInspection); /** * 删除弃检 * * @param id 弃检主键 * @return 结果 */ public int deleteTjDiscardInspectionById(Long id); /** * 批量删除弃检 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteTjDiscardInspectionByIds(Long[] ids); }