package com.ruoyi.warehouseBusiness.mapper; import com.ruoyi.warehouseBusiness.domain.TWarehousebillsLog; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 入出库状态Mapper接口 * * @author ruoyi * @date 2021-01-15 */ @Mapper public interface TWarehousebillsLogMapper { /** * 查询入出库状态 * * @param fId 入出库状态ID * @return 入出库状态 */ public TWarehousebillsLog selectTWarehousebillsLogById(Long fId); /** * 查询入出库状态列表 * * @param tWarehousebillsLog 入出库状态 * @return 入出库状态集合 */ public List selectTWarehousebillsLogList(TWarehousebillsLog tWarehousebillsLog); /** * 新增入出库状态 * * @param tWarehousebillsLog 入出库状态 * @return 结果 */ public int insertTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog); /** * 修改入出库状态 * * @param tWarehousebillsLog 入出库状态 * @return 结果 */ public int updateTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog); /** * 删除入出库状态 * * @param fId 入出库状态ID * @return 结果 */ public int deleteTWarehousebillsLogById(Long fId); /** * 批量删除入出库状态 * * @param fIds 需要删除的数据ID * @return 结果 */ public int deleteTWarehousebillsLogByIds(Long[] fIds); }