1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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<TWarehousebillsLog> 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);
- }
|